Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 548 Bytes

README.md

File metadata and controls

15 lines (11 loc) · 548 Bytes

💻 systems-programming

Coursework and projects for systems programming class junior year
Learning Linux Programming and C

TCP Server written in C:

To run the server you would first need to compile it on your system.

You can compile the server.c file by running cc -o runserver server.c.
After compiling you can run the runserver exececutable file by running ./runserver <port_number>
example: ./runserver 1234 would start the server on localhost:1234.

Shell:

Compile: cc -o shell shell.c.
Run: ./shell