Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | For usages of assert() that are meant to persist in Release builds (when ↵ | Craig Robbins | 2015-03-07 |
| | | | | NDEBUG is defined), replace those usages with persistent alternatives | ||
* | Use std::queue for HTTPFetchRequest and std::vector for log_output instead ↵ | Loic Blot | 2015-03-05 |
| | | | | of std::list | ||
* | Remove unused variables to make clang happy | Loic Blot | 2015-02-12 |
| | |||
* | Use configured bind_address for HTTPFetch | ShadowNinja | 2014-09-18 |
| | |||
* | Reduce indentation of HTTPFetchOngoing | ShadowNinja | 2014-09-18 |
| | | | | Also clean up some related things. | ||
* | Add support for multipart/form-data to HTTPFetch for server announcing | ShadowNinja | 2014-06-30 |
| | |||
* | Add support for Android 2.3+ | sapier | 2014-06-29 |
| | | | | | | | | | | | | | There have been plenty of ppl involved in creating this version. I don't wanna mention names as I'm sure I'd forget someone so I just tell where help has been done: - The partial android versions done by various ppl - Testing on different android devices - reviewing code (especially the in core changes) - testing controls - reviewing texts A big thank you to everyone helping this to be completed! | ||
* | Remove dependency on marshal and many other async changes | ShadowNinja | 2014-04-27 |
| | | | | | | | | | | | | This makes a number of changes: * Remove the dependency on marshal by using string.dump and loadstring. * Use lua_tolstring rather than having Lua functions pass string lengths to C++. * Move lua_api/l_async_events.* to cpp_api/s_async.*, where it belongs. * Make AsyncWorkerThread a child of ScriptApiBase, this removes some duplicate functionality. * Don't wait for async threads to shut down. (Is this safe? Might result in corruption if the thread is writing to a file.) * Pop more unused items from the stack * Code style fixes * Other misc changes | ||
* | Add support for named threads (atm linux only) | sapier | 2014-04-09 |
| | |||
* | Include system info in the HTTP user agent on Windows | Sfan5 | 2014-01-23 |
| | |||
* | Deindent HTTPFetchRequest::HTTPFetchRequest() | ShadowNinja | 2014-01-16 |
| | |||
* | Make default User-agent follow RFC 2616 | ShadowNinja | 2014-01-15 |
| | |||
* | Fix building with MinGW | Sfan5 | 2014-01-15 |
| | |||
* | Fix check for max_fd == -1 should actually be max_fd != -1 | sapier | 2014-01-10 |
| | |||
* | Make MutexQueue use jsemaphore for signaling | sapier | 2014-01-10 |
| | |||
* | Send long announce as POST, show OS in useragent | proller | 2014-01-07 |
| | | | | | Add lag reporting to masterserver (average dtime) StyledWriter -> FastWriter in masterserver announce | ||
* | Use sleep_ms instead of select in httpfetch when max_fd == -1, fixes WSAEINVAL | Kahrl | 2013-12-24 |
| | |||
* | Fix broken httpfetch due to SimpleThread removal | sapier | 2013-12-16 |
| | |||
* | Fix MSVC compiling issue | BlockMen | 2013-12-16 |
| | |||
* | Replace SimpleThread by JThread now implementing same features | sapier | 2013-12-15 |
| | |||
* | Replace any direct curl usage by httpfetch | sapier | 2013-12-13 |
| | |||
* | Use httpfetch_async in serverlist announce code | Kahrl | 2013-12-13 |
| | |||
* | Implement httpfetch module and initialize it from main() | Kahrl | 2013-12-13 |
Add curl_parallel_limit setting that will replace media_fetch_threads in a later commit. Fix a typo in MutexedQueue::pop_back() that made it impossible to compile code that used this function. (Noticed this while implementing httpfetch.) |