Skip to content

Latest commit

 

History

History
41 lines (33 loc) · 893 Bytes

README.md

File metadata and controls

41 lines (33 loc) · 893 Bytes

FriendMe-Server

A social media server that communicates through sockets in C.

Alt text

Setup server

Compile the code using the Makefile by running

make

in the src folder. Then run friendme_server.c using gcc.

Communicate to server

You can do this using a tool such Netcat that can read/write over the network through a socket. The socket number defined in the Makefile is 53953.

Commands

list_users

List all the users stored in the server.

make_friends <username>

Become friends with the user identified with given username.

post <username> <message>

Post message given on the users wall identified by username given.

profile <username>

View a users profile identified by giving their username.

quit

Disconnect from server by closing socket connection.