IXWebSocket/ixwebsocket
2021-03-19 10:58:38 -07:00
..
IXBench.cpp Add support for gzip compression through libdeflate 2020-09-30 14:34:03 -07:00
IXBench.h Add support for gzip compression through libdeflate 2020-09-30 14:34:03 -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 clang format, based on cpprest 2019-05-30 08:46:50 -07:00
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 mingw build problem fix attempt 2021-03-13 18:31:42 -08:00
IXDNSLookup.h fix memory leak in dns unittest 2020-11-12 13:07:31 -08:00
IXExponentialBackoff.cpp IXExponentialBackoff.cpp: fix typo in source code file name in the header block 2020-10-05 10:39:11 -07:00
IXExponentialBackoff.h reformat everything with clang-format 2019-09-23 10:25:23 -07:00
IXGetFreePort.cpp fix ws curl error message + some Windows warnings 2020-12-12 11:01:22 -08:00
IXGetFreePort.h (socket utility) move ix::getFreePort to ixwebsocket library 2020-07-27 18:17:13 -07:00
IXGzipCodec.cpp (docker) build docker container with zlib disabled 2020-11-07 11:22:52 -08:00
IXGzipCodec.h (ws) add gzip and gunzip ws sub commands 2020-09-28 10:19:27 -07:00
IXHttp.cpp (http client + server + ws) Add support for compressing http client requests with gzip. --compress_request argument is used in ws to enable this. The Content-Encoding is set to gzip, and decoded on the server side if present. 2020-10-09 17:51:56 -07:00
IXHttp.h (http client + server + ws) Add support for compressing http client requests with gzip. --compress_request argument is used in ws to enable this. The Content-Encoding is set to gzip, and decoded on the server side if present. 2020-10-09 17:51:56 -07:00
IXHttpClient.cpp Fix an issue with disabling zlib and getting linker errors from the http client. (#247) 2020-10-19 13:36:04 -07:00
IXHttpClient.h (http client + server + ws) Add support for compressing http client requests with gzip. --compress_request argument is used in ws to enable this. The Content-Encoding is set to gzip, and decoded on the server side if present. 2020-10-09 17:51:56 -07:00
IXHttpServer.cpp (http client + server + ws) Add support for uploading files with ws -F foo=@filename, new -D http server option to debug incoming client requests, internal api changed for http POST, PUT and PATCH to supply an HttpFormDataParameters 2020-10-08 12:43:18 -07:00
IXHttpServer.h (http client + server + ws) Add support for uploading files with ws -F foo=@filename, new -D http server option to debug incoming client requests, internal api changed for http POST, PUT and PATCH to supply an HttpFormDataParameters 2020-10-08 12:43:18 -07:00
IXNetSystem.cpp mingw compile fix / remove restrict in inet_* functions 2021-03-19 10:58:38 -07:00
IXNetSystem.h mingw compile fix / remove restrict in inet_* functions 2021-03-19 10:58:38 -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 (ixwebsocket) use a C++11 compatible make_unique shim 2020-11-15 09:56:54 -08: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 hand EINTR in IXSelectInterruptPipe::notify and IXSelectInterruptPipe::read 2020-11-16 13:52:13 -08:00
IXSelectInterruptPipe.h clang format, based on cpprest 2019-05-30 08:46:50 -07:00
IXSetThreadName.cpp no set thread name on mingw 2021-03-13 19:02:20 -08:00
IXSetThreadName.h clang format, based on cpprest 2019-05-30 08:46:50 -07:00
IXSocket.cpp (socket) replace a std::vector with an std::array used as a tmp buffer in Socket::readBytes 2020-11-11 21:39:31 -08:00
IXSocket.h (socket) replace a std::vector with an std::array used as a tmp buffer in Socket::readBytes 2020-11-11 21:39:31 -08: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 fix ws curl error message + some Windows warnings 2020-12-12 11:01:22 -08:00
IXSocketConnect.h clang format, based on cpprest 2019-05-30 08:46:50 -07:00
IXSocketFactory.cpp (ixwebsocket) use a C++11 compatible make_unique shim 2020-11-15 09:56:54 -08: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 C++11 compatible 2020-11-15 21:09:58 -08:00
IXSocketOpenSSL.h compile attempt with old OpenSSL versions 2020-11-15 11:23:44 -08: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 (ws) Implement simple header based websocket authorization technique to reject 2020-12-17 22:42:14 -08: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
IXStrCaseCompare.cpp C++11 compatible 2020-11-15 21:09:58 -08:00
IXStrCaseCompare.h C++11 compatible 2020-11-15 21:09:58 -08: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
IXUniquePtr.h (ixwebsocket) use a C++11 compatible make_unique shim 2020-11-15 09:56:54 -08: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 user agent 2019-08-30 12:50:56 -07:00
IXUtf8Validator.h reformat everything with clang-format 2019-09-23 10:25:23 -07:00
IXUuid.cpp (ws) trim ws dependencies no more ixcrypto and ixcore deps 2020-12-25 16:25:58 -08:00
IXUuid.h (ws) trim ws dependencies no more ixcrypto and ixcore deps 2020-12-25 16:25:58 -08:00
IXWebSocket.cpp mention disablePerMessageDeflate in the doc 2021-03-16 09:56:08 -07:00
IXWebSocket.h mention disablePerMessageDeflate in the doc 2021-03-16 09:56:08 -07:00
IXWebSocketCloseConstants.cpp reformat everything with clang-format 2019-09-23 10:25:23 -07:00
IXWebSocketCloseConstants.h Validate close codes. Autobahn 7.9.* 2019-09-03 15:43:16 -07:00
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 mention disablePerMessageDeflate in the doc 2021-03-16 09:56:08 -07:00
IXWebSocketHandshake.h mention disablePerMessageDeflate in the doc 2021-03-16 09:56:08 -07:00
IXWebSocketHandshakeKeyGen.h clang-format 2020-04-24 15:34:00 -07:00
IXWebSocketHttpHeaders.cpp C++11 compatible 2020-11-15 21:09:58 -08:00
IXWebSocketHttpHeaders.h C++11 compatible 2020-11-15 21:09:58 -08:00
IXWebSocketInitResult.h Add client support for websocket subprotocol. Look for the new addSubProtocol method for details 2019-10-13 13:37:34 -07:00
IXWebSocketMessage.h fix buggy message and remove un-needed include 2020-11-19 14:27:10 -08:00
IXWebSocketMessageType.h Add explicite WebSocket::sendBinary 2019-06-09 10:10:33 -07:00
IXWebSocketOpenInfo.h clang-format 2020-04-16 11:58:06 -07:00
IXWebSocketPerMessageDeflate.cpp (ixwebsocket) use a C++11 compatible make_unique shim 2020-11-15 09:56:54 -08:00
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 all client autobahn test should pass ! last failing one was ... 2019-09-04 21:01:30 -07:00
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 clang format, based on cpprest 2019-05-30 08:46:50 -07:00
IXWebSocketServer.cpp mention disablePerMessageDeflate in the doc 2021-03-16 09:56:08 -07:00
IXWebSocketServer.h new makeBroadcastServer websocket server method for classic servers, used by ws 2021-01-03 11:24:12 -08:00
IXWebSocketTransport.cpp mention disablePerMessageDeflate in the doc 2021-03-16 09:56:08 -07:00
IXWebSocketTransport.h mention disablePerMessageDeflate in the doc 2021-03-16 09:56:08 -07:00
IXWebSocketVersion.h mention disablePerMessageDeflate in the doc 2021-03-16 09:56:08 -07:00