https://github.com/miguelzacca/cpp-socket-server
C++ Socket Server
https://github.com/miguelzacca/cpp-socket-server
Last synced: about 2 months ago
JSON representation
C++ Socket Server
- Host: GitHub
- URL: https://github.com/miguelzacca/cpp-socket-server
- Owner: miguelzacca
- License: mit
- Created: 2024-04-18T04:08:47.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-04-18T04:10:55.000Z (about 1 year ago)
- Last Synced: 2025-02-15T17:41:33.198Z (4 months ago)
- Language: C++
- Size: 2.93 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# C++ Socket Server
Simple socket server with C++, Windows/Linux code.
## Compilation
```
g++ -o main main.cpp
```## Linux to Windows Compilation
```
x86_64-w64-mingw32-g++ -o main main.cpp -static-libstdc++ -static-libgcc -mwindows -lws2_32
```