SimpleHttpServer
자세한 소스는 github을 참고하세요.
https://github.com/lmk/SimpleHttpServer
- very simple http server
- default port: 8080
- modify source here
- support: linux g++ 4.9.2
How to use
block server
HttpServer httpServer;
httpServer.Init(5, NULL);
httpServer.Run();
non-block
NBHttpServer* httpServer = NBHttpServer::getInstance();
httpServer->Init(5);
httpServer->Start();
sleep(60);
httpServer->Stop();
반응형
'Dev > C, C++' 카테고리의 다른 글
vscode 에서 원격 디버깅 (0) | 2020.11.24 |
---|---|
FindMSSQL (0) | 2017.09.12 |
OpenSSL 을 사용한 RSA (0) | 2017.05.30 |
Visual Leak Detector 를 사용하여 Leak을 감지하는 방법. (0) | 2016.02.15 |
debian 계열 linux에서 core 파일 생성 방법 (0) | 2015.07.30 |