An open API service indexing awesome lists of open source software.

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

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
```