Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2023-05-19 | cTCPLink and cUrlClient accept list of trusted root CAs for TLS. | Mattes D | 1 | -4/+4 | |
2023-05-16 | Removed all Printf-family functions from StringUtils. | Mattes D | 1 | -11/+23 | |
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. | |||||
2020-08-01 | Replaced cpp14::make_unique<> with std::make_unique<>. | Mattes D | 1 | -2/+2 | |
2018-05-02 | Prefer static_cast to reinterpret_cast (#4223) | peterbell10 | 1 | -2/+2 | |
* Change reinterpret_cast -> static_cast wherever possible * Remove more unnecessary `const_cast`s. reinterpret_casts should be avoided for the same reason as c-style casts - they don't do any type-checking. reinterpret_cast was mainly being used for down-casting in inheritance hierarchies but static_cast works just as well while also making sure that there is actually an inheritance relationship there. | |||||
2017-08-02 | Removed double includes (#3885) | Lukas Pioch | 1 | -1/+0 | |
2017-06-26 | cNetwork bindings: Use ApiParamError and CheckParam(Static)Self. | Mattes D | 1 | -226/+91 | |
2016-08-23 | cUrlClient: Exported to Lua API. | Mattes D | 1 | -0/+334 | |
2016-08-22 | cLuaState: Added direct support for pushing a nil constant. | Mattes D | 1 | -4/+3 | |
2016-08-13 | Converted cLuaState::cTableRef to use cTrackedRef. | Mattes D | 1 | -58/+63 | |
This makes the table-based callbacks resistent to LuaState unloads and safer to use. | |||||
2016-02-05 | Bulk clearing of whitespace | LogicParrot | 1 | -22/+22 | |
2015-12-15 | Fixed warning regarding an uninitialized value | Julian Laubstein | 1 | -1/+1 | |
2015-10-08 | Fixed bindings for cTCPLink:StartTLSClient(). | Mattes D | 1 | -12/+2 | |
The bindings used to enforce client cert, now it's optional. | |||||
2015-08-18 | Some warning fixes | Julian Laubstein | 1 | -2/+2 | |
2015-05-24 | Fix comments | tycho | 1 | -1/+1 | |
2015-05-19 | Added LuaState support for all integral types | tycho | 1 | -4/+3 | |
All so added error handling for out of range values | |||||
2015-05-13 | Moved cWorld manual bindings out into a separate file. | Mattes D | 1 | -11/+11 | |
2015-02-22 | cNetwork: Added EnumLocalIPAddresses() function. | Mattes D | 1 | -5/+30 | |
2015-02-20 | cNetwork: Added UDP API. | Mattes D | 1 | -31/+297 | |
2015-02-13 | Exported TLS server start on cTCPLink to Lua API. | Mattes D | 1 | -0/+47 | |
2015-02-13 | Exported cTCPLink:Close and :Shutdown() to Lua API. | Mattes D | 1 | -13/+83 | |
2015-02-12 | LuaAPI: Added client TLS support for TCP links. | Mattes D | 1 | -5/+51 | |
2015-02-06 | APIDump: Added cNetwork documentation. | Mattes D | 1 | -1/+1 | |
2015-02-04 | Exported cServerHandle and cNetwork:Listen to Lua. | Mattes D | 1 | -2/+155 | |
Also added an example to the NetworkTest plugin. | |||||
2015-02-04 | cNetwork: Exported lookup functions to Lua API. | Mattes D | 1 | -1/+82 | |
Also added an example in the NetworkTest plugin. | |||||
2015-02-04 | cNetwork: Exported the Connect() method and cTCPLink class to Lua. | Mattes D | 1 | -0/+279 | |