https://github.com/sean-bradley/cppmultithreadedlowlatencytcpsocketserver
CPP Multi Threaded Low Latency TCP Socket Server
https://github.com/sean-bradley/cppmultithreadedlowlatencytcpsocketserver
cplusplus cpp socket tcp-server
Last synced: 9 months ago
JSON representation
CPP Multi Threaded Low Latency TCP Socket Server
- Host: GitHub
- URL: https://github.com/sean-bradley/cppmultithreadedlowlatencytcpsocketserver
- Owner: Sean-Bradley
- Created: 2014-01-02T10:01:05.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2018-07-21T15:54:16.000Z (over 7 years ago)
- Last Synced: 2025-03-02T11:14:38.161Z (about 1 year ago)
- Topics: cplusplus, cpp, socket, tcp-server
- Language: C++
- Homepage:
- Size: 4.88 KB
- Stars: 2
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CPP Multi Threaded Low Latency TCP Socket Server
C++ Multi Threaded Low Latency TCP Socket Server
To build the Server on Linux
g++ TCP4Server.cpp -pthread -std=c++11 -o SeansTCP4Server
To run the server
./SeansTCP4Server
To test use Telnet client
telnet [host address] 8080
or use compile and use TCP4Client.cpp
To build the client on Linux
g++ TCP4Client.cpp -std=c++11 -o SeansTCP4Client
To run the client
./SeansTCP4Client [IP address of SeansTCP4Server]