https://github.com/jerridan/multi-threaded-server
A simple implementation of a multi-threaded server in C
https://github.com/jerridan/multi-threaded-server
Last synced: about 1 month ago
JSON representation
A simple implementation of a multi-threaded server in C
- Host: GitHub
- URL: https://github.com/jerridan/multi-threaded-server
- Owner: jerridan
- Created: 2016-03-19T20:09:06.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2016-03-21T01:45:44.000Z (about 9 years ago)
- Last Synced: 2025-04-23T11:56:37.422Z (about 1 month ago)
- Language: C
- Homepage:
- Size: 13.7 KB
- Stars: 2
- Watchers: 1
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.txt
Awesome Lists containing this project
README
README for Client and Multi-Threaded Server
Compiling:
Enter 'make' and both the client and server will be compiled.Client:
To run the client, enter './client', followed by the 3 required parameters:
1. Server's hostname
2. Port number
3. Number to multiply (integers only)
Example: ./client localhost 5000 -3Server:
To run the server, enter './server', followed by the 3 required parameters:
1. Port number
2. Number of threads to create
3. The maximum number of queued connections
Example: ./server 5000 10 20To shut down the server, enter 'Ctrl+C'