summaryrefslogtreecommitdiffstats
path: root/src/OSSupport/TCPLinkImpl.h (unfollow)
Commit message (Collapse)AuthorFilesLines
2020-04-16Using Super.Mattes D1-1/+2
2017-08-30Update mbedtls to 2.5.1 (#3964)peterbell101-1/+1
* Renaming changes: * macro prefix "POLARSSL" -> "MBEDTLS" * functions now prefixed with "mbedtls_" * rename PolarSSL++ -> mbedTLS++ * rename polarssl submodule * Use mbedtls' AES-CFB8 implementation. * Add cSslConfig to wrap mbedtls_ssl_config * Update cTCPLink and cBlockingSslClientSocket to use cSslConfig * Use cSslConfig in cHTTPServer * Use cSslConfig for cMojangAPI::SecureRequest * CI Fixes * Set -fomit-frame-pointer on the right target
2017-07-21Remove smart pointer macrospeterbell101-4/+4
2017-05-21Clang 5.0 fixesLukas Pioch1-1/+1
- Added override keyword - Removed inherited member variables
2016-08-22cTCPLink supports TLS out of the box.Mattes D1-0/+75
2015-02-14Fixed TCP link shutdown.Mattes D1-0/+12
The shutdown is postponed until there's no more outgoing data in the LibEvent buffers.
2015-01-23cNetwork: Added self pointers to keep objects alive for callbacks.Mattes D1-5/+11
Ref.: http://forum.mc-server.org/showthread.php?tid=1700&pid=17947#pid17947
2015-01-22cNetwork: Added link creation callback.Mattes D1-2/+9
This allows the callback classes to store the link inside them and use it internally later on, mainly for sending data.
2015-01-22cTCPLinkImpl: Fixed type conversion warning.Mattes D1-2/+2
2015-01-22cNetwork: Split the main cpp file into several files.Mattes D1-0/+109