summaryrefslogtreecommitdiffstats
path: root/src/Bindings/LuaTCPLink.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Removed all Printf-family functions from StringUtils.Mattes D2023-05-161-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.
* Update mbedtls to 2.5.1 (#3964)peterbell102017-08-301-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
* cTCPLink supports TLS out of the box.Mattes D2016-08-221-245/+25
|
* Converted cLuaState::cTableRef to use cTrackedRef.Mattes D2016-08-131-106/+40
| | | | This makes the table-based callbacks resistent to LuaState unloads and safer to use.
* LuaState: Implemented proper locking for cCallback.Mattes D2016-06-271-1/+1
|
* LuaTCPLink: Report data received via SSL just before connection closed.Mattes D2016-02-211-2/+10
|
* Fixed Linux compilation.Mattes D2015-02-141-1/+1
|
* Exported TLS server start on cTCPLink to Lua API.Mattes D2015-02-131-6/+111
|
* Fixed Linux compilation.Mattes D2015-02-121-1/+1
| | | | std::make_unique is not available in C++11.
* LuaAPI: Added client TLS support for TCP links.Mattes D2015-02-121-0/+201
|
* Exported cServerHandle and cNetwork:Listen to Lua.Mattes D2015-02-041-11/+86
| | | | Also added an example to the NetworkTest plugin.
* cNetwork: Exported the Connect() method and cTCPLink class to Lua.Mattes D2015-02-041-0/+229