IXWebSocket/ixwebsocket
2020-09-26 13:51:19 -07:00
..
IXBench.cpp (ws) echo_client command renamed to autoroute. Command exit once the server close the connection. push_server commands exit once N messages have been sent. 2020-09-03 09:13:23 -07:00
IXBench.h (ws) echo_client command renamed to autoroute. Command exit once the server close the connection. push_server commands exit once N messages have been sent. 2020-09-03 09:13:23 -07:00
IXCancellationRequest.cpp (openssl tls) when OpenSSL is older than 1.1, register the crypto locking callback to be thread safe. Should fix lots of CI failures 2020-05-06 16:26:30 -07:00
IXCancellationRequest.h
IXConnectionState.cpp (socket servers) merge the ConnectionInfo class with the ConnectionState one, which simplify all the server apis 2020-08-28 14:55:40 -07:00
IXConnectionState.h (socket servers) merge the ConnectionInfo class with the ConnectionState one, which simplify all the server apis 2020-08-28 14:55:40 -07:00
IXDNSLookup.cpp uwp fixes 2020-05-01 11:27:59 -07:00
IXDNSLookup.h
IXExponentialBackoff.cpp
IXExponentialBackoff.h
IXGetFreePort.cpp (socket utility) move ix::getFreePort to ixwebsocket library 2020-07-27 18:17:13 -07:00
IXGetFreePort.h (socket utility) move ix::getFreePort to ixwebsocket library 2020-07-27 18:17:13 -07:00
IXHttp.cpp Rename HttpResponse's payload to body (#245) 2020-09-12 19:01:37 -07:00
IXHttp.h Rename HttpResponse's payload to body (#245) 2020-09-12 19:01:37 -07:00
IXHttpClient.cpp (ixwebsocket) replace std::unique_ptr<unsigned char[]> with std::array for some fixed arrays (which are in C++11) 2020-08-17 16:48:26 -07:00
IXHttpClient.h (build) make using zlib optional, with the caveat that some http and websocket features are not available when zlib is absent 2020-07-31 22:54:57 -07:00
IXHttpServer.cpp (http server) read body request when the Content-Length is specified + set timeout to read the request to 30 seconds max by default, and make it configurable as a constructor parameter 2020-09-12 14:17:06 -07:00
IXHttpServer.h (http server) read body request when the Content-Length is specified + set timeout to read the request to 30 seconds max by default, and make it configurable as a constructor parameter 2020-09-12 14:17:06 -07:00
IXNetSystem.cpp
IXNetSystem.h (openssl tls) when OpenSSL is older than 1.1, register the crypto locking callback to be thread safe. Should fix lots of CI failures 2020-05-06 16:26:30 -07:00
IXProgressCallback.h Feature/send large message (#14) 2019-02-20 18:59:07 -08:00
IXSelectInterrupt.cpp (socket server) do not create a select interrupt object everytime when polling for notifications while waiting for new connections, instead use a persistent one which is a member variable 2020-08-15 15:28:15 -07:00
IXSelectInterrupt.h (socket server) do not create a select interrupt object everytime when polling for notifications while waiting for new connections, instead use a persistent one which is a member variable 2020-08-15 15:28:15 -07:00
IXSelectInterruptFactory.cpp (socket) selectInterrupt member is an unique_ptr instead of being a shared_ptr 2020-03-24 10:00:41 -07:00
IXSelectInterruptFactory.h (socket) selectInterrupt member is an unique_ptr instead of being a shared_ptr 2020-03-24 10:00:41 -07:00
IXSelectInterruptPipe.cpp IXSelectInterruptPipe.h included in cmake on windows but compiled out 2020-07-17 11:33:02 -07:00
IXSelectInterruptPipe.h
IXSetThreadName.cpp (websocket server) add a new simpler API to handle client connections / that API does not trigger a memory leak while the previous one did 2020-07-23 19:29:41 -07:00
IXSetThreadName.h
IXSocket.cpp (socket server) do not create a select interrupt object everytime when polling for notifications while waiting for new connections, instead use a persistent one which is a member variable 2020-08-15 15:28:15 -07:00
IXSocket.h (socket server) do not create a select interrupt object everytime when polling for notifications while waiting for new connections, instead use a persistent one which is a member variable 2020-08-15 15:28:15 -07:00
IXSocketAppleSSL.cpp include all ssl backends inside special per backend macro 2020-04-24 12:47:47 -07:00
IXSocketAppleSSL.h include all ssl backends inside special per backend macro 2020-04-24 12:47:47 -07:00
IXSocketConnect.cpp formatting 2020-03-24 20:37:55 -07:00
IXSocketConnect.h
IXSocketFactory.cpp unique_ptr for sockets 2020-03-24 12:48:55 -07:00
IXSocketFactory.h unique_ptr for sockets 2020-03-24 12:48:55 -07:00
IXSocketMbedTLS.cpp (windows + tls) mbedtls is the default windows tls backend + add ability to load system certificates with mbdetls on windows 2020-05-17 20:36:46 -07:00
IXSocketMbedTLS.h (windows + tls) mbedtls is the default windows tls backend + add ability to load system certificates with mbdetls on windows 2020-05-17 20:36:46 -07:00
IXSocketOpenSSL.cpp (openssl tls) (openssl < 1.1) logic inversion - crypto locking callback are not registered properly 2020-05-08 09:54:42 -07:00
IXSocketOpenSSL.h (cobra bots) add a --heartbeat_timeout option to specify when the bot should terminate because no events are received 2020-05-06 22:01:48 -07:00
IXSocketServer.cpp (socket servers) merge the ConnectionInfo class with the ConnectionState one, which simplify all the server apis 2020-08-28 14:55:40 -07:00
IXSocketServer.h (socket servers) merge the ConnectionInfo class with the ConnectionState one, which simplify all the server apis 2020-08-28 14:55:40 -07:00
IXSocketTLSOptions.cpp more tls in memory certs doc + bump file format 2020-04-24 15:50:39 -07:00
IXSocketTLSOptions.h clang-format 2020-04-24 15:34:00 -07:00
IXUdpSocket.cpp another windows build error in IXUdpSocket ... 2020-05-05 08:29:39 -07:00
IXUdpSocket.h (openssl tls) when OpenSSL is older than 1.1, register the crypto locking callback to be thread safe. Should fix lots of CI failures 2020-05-06 16:26:30 -07:00
IXUrlParser.cpp clang format 2020-07-08 10:39:46 -07:00
IXUrlParser.h clang format, based on cpprest 2019-05-30 08:46:50 -07:00
IXUserAgent.cpp (build) make using zlib optional, with the caveat that some http and websocket features are not available when zlib is absent 2020-07-31 22:54:57 -07:00
IXUserAgent.h
IXUtf8Validator.h
IXWebSocket.cpp (cobra connection and bots) set an HTTP header when connecting to help with debugging bots 2020-09-18 15:11:20 -07:00
IXWebSocket.h (websocket server) Handle programmer error when the server callback is not registered properly (fix #227) 2020-08-06 04:40:32 -07:00
IXWebSocketCloseConstants.cpp
IXWebSocketCloseConstants.h
IXWebSocketCloseInfo.h missing headers in IXWebSocketCloseInfo.h, ,IXWebSocketErrorInfo.h and IXWebSocketOpenInfo.h 2020-04-14 21:52:27 -07:00
IXWebSocketErrorInfo.h missing headers in IXWebSocketCloseInfo.h, ,IXWebSocketErrorInfo.h and IXWebSocketOpenInfo.h 2020-04-14 21:52:27 -07:00
IXWebSocketHandshake.cpp (ixwebsocket client) handle HTTP redirects 2020-08-14 18:13:34 -07:00
IXWebSocketHandshake.h unique_ptr for sockets 2020-03-24 12:48:55 -07:00
IXWebSocketHandshakeKeyGen.h clang-format 2020-04-24 15:34:00 -07:00
IXWebSocketHttpHeaders.cpp unique_ptr for sockets 2020-03-24 12:48:55 -07:00
IXWebSocketHttpHeaders.h unique_ptr for sockets 2020-03-24 12:48:55 -07:00
IXWebSocketInitResult.h
IXWebSocketMessage.h (websocket) WebSocketMessagePtr is a unique_ptr instead of a shared_ptr 2020-04-13 21:56:01 -07:00
IXWebSocketMessageType.h
IXWebSocketOpenInfo.h clang-format 2020-04-16 11:58:06 -07:00
IXWebSocketPerMessageDeflate.cpp
IXWebSocketPerMessageDeflate.h (websocket) reset per-message deflate codec everytime we connect to a server/client 2020-03-23 18:46:30 -07:00
IXWebSocketPerMessageDeflateCodec.cpp IXWebSocketPerMessageDeflateCodec: use std::array instead of std::unique_ptr for a fixed size array 2020-08-17 16:36:24 -07:00
IXWebSocketPerMessageDeflateCodec.h IXWebSocketPerMessageDeflateCodec: use std::array instead of std::unique_ptr for a fixed size array 2020-08-17 16:36:24 -07:00
IXWebSocketPerMessageDeflateOptions.cpp (build) make using zlib optional, with the caveat that some http and websocket features are not available when zlib is absent 2020-07-31 22:54:57 -07:00
IXWebSocketPerMessageDeflateOptions.h
IXWebSocketProxyServer.cpp (socket servers) merge the ConnectionInfo class with the ConnectionState one, which simplify all the server apis 2020-08-28 14:55:40 -07:00
IXWebSocketProxyServer.h (websocket proxy server) add ability to map different hosts to different websocket servers, using a json config file 2020-08-13 21:20:42 -07:00
IXWebSocketSendInfo.h
IXWebSocketServer.cpp (socket servers) merge the ConnectionInfo class with the ConnectionState one, which simplify all the server apis 2020-08-28 14:55:40 -07:00
IXWebSocketServer.h (socket servers) merge the ConnectionInfo class with the ConnectionState one, which simplify all the server apis 2020-08-28 14:55:40 -07:00
IXWebSocketTransport.cpp (socket server) do not create a select interrupt object everytime when polling for notifications while waiting for new connections, instead use a persistent one which is a member variable 2020-08-15 15:28:15 -07:00
IXWebSocketTransport.h WebSocket::close is re-entrant 2020-07-27 17:38:33 -07:00
IXWebSocketVersion.h (cmake) use FetchContent cmake module to retrieve spdlog third party dependency 2020-09-26 13:51:19 -07:00