summaryrefslogtreecommitdiffstats
path: root/src/Bindings/LuaTCPLink.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2023-05-19cTCPLink and cUrlClient accept list of trusted root CAs for TLS.Mattes D1-2/+13
2023-05-19cTCPLink: Use the original connection hostname for SNI.Mattes D1-2/+1
2023-05-19Auth SSL Fixesx12xx12x1-1/+3
- Fixed Login Breaking bug - Auth and MojangAPI now use UrlClient - fixed bug in UrlClient where one letter was missing in the HTTP Header - added function to verify Urls from config files and error handling on bad Urls in config for Auth
2023-05-16Removed all Printf-family functions from StringUtils.Mattes D1-4/+4
Replaced them with fmt::format calls, including changes to the format strings. Also changed the format strings to use FMT_STRING, so that the format is checked compile-time against the arguments. Also fixed code-style violations already present in the code.
2017-08-30Update mbedtls to 2.5.1 (#3964)peterbell101-2/+2
* 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
2016-08-22cTCPLink supports TLS out of the box.Mattes D1-245/+25
2016-08-13Converted cLuaState::cTableRef to use cTrackedRef.Mattes D1-106/+40
This makes the table-based callbacks resistent to LuaState unloads and safer to use.
2016-06-27LuaState: Implemented proper locking for cCallback.Mattes D1-1/+1
2016-02-21LuaTCPLink: Report data received via SSL just before connection closed.Mattes D1-2/+10
2015-02-14Fixed Linux compilation.Mattes D1-1/+1
2015-02-13Exported TLS server start on cTCPLink to Lua API.Mattes D1-6/+111
2015-02-12Fixed Linux compilation.Mattes D1-1/+1
std::make_unique is not available in C++11.
2015-02-12LuaAPI: Added client TLS support for TCP links.Mattes D1-0/+201
2015-02-04Exported cServerHandle and cNetwork:Listen to Lua.Mattes D1-11/+86
Also added an example to the NetworkTest plugin.
2015-02-04cNetwork: Exported the Connect() method and cTCPLink class to Lua.Mattes D1-0/+229