Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2023-05-19 | cTCPLink and cUrlClient accept list of trusted root CAs for TLS. | Mattes D | 1 | -1/+2 | |
2023-05-19 | cTCPLink: Use the original connection hostname for SNI. | Mattes D | 1 | -2/+1 | |
2023-05-19 | Auth SSL Fixes | x12xx12x | 1 | -1/+2 | |
- 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 | |||||
2020-09-10 | fixed missing include for FreeBSD. (#4852) | SatoKaito | 1 | -1/+8 | |
2020-05-15 | Enable some more clang-tidy linter checks (#4738) | peterbell10 | 1 | -1/+1 | |
* Avoid inefficient AString -> c_str() -> AString round trip * Avoid redundant string init expressions * Avoid unnecessary return, continue, etc. * Add .clang-format to help with clang-tidy fix-its * Avoid unnecessary passing by value * Avoid unnecessary local copying * Avoid copying in range-for loops * Avoid over-complicated boolean expressions * Some violations missed by my local clang-tidy * Allow unnecessary continue statements * Add brackets * Another expression missed locally * Move BindingsProcessor call into clang-tidy.sh and add space * Fix pushd not found error * Different grouping of CheckBlockInteractionRate | |||||
2018-07-26 | CheckBasicStyle: Check number of empty lines between functions (#4267) | peterbell10 | 1 | -1/+0 | |
Add check for number of empty lines between functions and fix the corresponding failures | |||||
2017-07-21 | Remove smart pointer macros | peterbell10 | 1 | -9/+9 | |
2016-08-22 | cTCPLink supports TLS out of the box. | Mattes D | 1 | -0/+33 | |
2015-05-09 | More style checking. | Mattes D | 1 | -1/+1 | |
Spaces around some operators are checked. | |||||
2015-02-22 | cNetwork: Added EnumLocalIPAddresses() function. | Mattes D | 1 | -0/+3 | |
2015-02-20 | cNetwork: Added UDP API. | Mattes D | 1 | -1/+77 | |
2015-02-04 | Exported cServerHandle and cNetwork:Listen to Lua. | Mattes D | 1 | -0/+3 | |
Also added an example to the NetworkTest plugin. | |||||
2015-01-22 | cNetwork: Renamed callback to OnConnected() | Mattes D | 1 | -2/+5 | |
2015-01-22 | cNetwork: Added link creation callback. | Mattes D | 1 | -3/+15 | |
This allows the callback classes to store the link inside them and use it internally later on, mainly for sending data. | |||||
2015-01-22 | cNetwork: Changed listening API. | Mattes D | 1 | -6/+12 | |
The link-callbacks for each new accepted link are now received from the OnIncomingConnection listen-callback. | |||||
2015-01-22 | cNetwork: Added error message to error callbacks. | Mattes D | 1 | -3/+3 | |
2015-01-22 | cNetwork: Split the main cpp file into several files. | Mattes D | 1 | -6/+13 | |
2015-01-22 | cNetwork: Added an OnError callback for listening servers. | Mattes D | 1 | -0/+3 | |
The callback receives the error details. | |||||
2015-01-22 | cNetwork: Implemented connection shutdown and close. | Mattes D | 1 | -4/+6 | |
2015-01-22 | cNetwork: Implemented HostnameToIP lookups. | Mattes D | 1 | -2/+9 | |
2015-01-22 | cNetwork: Linux compilation fix. | Mattes D | 1 | -0/+18 | |
2015-01-22 | Implemented LibEvent-based client connections. | Mattes D | 1 | -0/+188 | |