websocket-cpp:C ++ WebSockets服务器

时间:2024-05-20 04:11:25
【文件属性】:

文件名称:websocket-cpp:C ++ WebSockets服务器

文件大小:240KB

文件格式:ZIP

更新时间:2024-05-20 04:11:25

C++

C ++的WebSockets 0.1版Alpha WebSocket服务器的快速而肮脏的实现。 仅用于测试目的。 例子 websocket::Server server; // listen on 0.0.0.0:8888 // log errors to stderr server.start("0.0.0.0", 8888, std::cerr); ... // check for a new event websocket::Event event; websocket::ConnectionId connId; std::string message; if (server.poll(event, connId, message) { switch (event) { case websocket::Event::NewConnection:


【文件预览】:
websocket-cpp-master
----Server.hpp(870B)
----websocket-cpp.cpp(94B)
----.gitattributes(12B)
----server_fwd.hpp(280B)
----server_src.hpp(4KB)
----CMakeLists.txt(1KB)
----README.md(3KB)
----docs()
--------rfc6455.txt(158KB)
--------rfc2616.txt(412KB)
----tests()
--------handshake_tests.cpp(2KB)
--------base64_tests.cpp(890B)
--------main.cpp(254B)
--------frames_tests.cpp(3KB)
--------sha1_tests.cpp(2KB)
--------http_parser_tests.cpp(1KB)
--------regression_tests.cpp(6KB)
----.gitignore(8B)
----third_party()
--------catch()
----details()
--------handshake.hpp(3KB)
--------ServerLogic.hpp(3KB)
--------http.hpp(4KB)
--------frames.hpp(4KB)
--------Connection.hpp(5KB)
--------base64.hpp(867B)
--------Acceptor.hpp(1KB)
--------http_parser.hpp(5KB)
--------sha1.hpp(4KB)

网友评论