aboutsummaryrefslogtreecommitdiff
path: root/src/httpfetch.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Use configured bind_address for HTTPFetchShadowNinja2014-09-181-0/+5
|
* Reduce indentation of HTTPFetchOngoingShadowNinja2014-09-181-215/+222
| | | | Also clean up some related things.
* Add support for multipart/form-data to HTTPFetch for server announcingShadowNinja2014-06-301-9/+50
|
* Add support for Android 2.3+sapier2014-06-291-2/+6
| | | | | | | | | | | | | 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 changesShadowNinja2014-04-271-1/+1
| | | | | | | | | | | | 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)sapier2014-04-091-0/+2
|
* Include system info in the HTTP user agent on WindowsSfan52014-01-231-13/+2
|
* Deindent HTTPFetchRequest::HTTPFetchRequest()ShadowNinja2014-01-161-15/+15
|
* Make default User-agent follow RFC 2616ShadowNinja2014-01-151-3/+4
|
* Fix building with MinGWSfan52014-01-151-2/+2
|
* Fix check for max_fd == -1 should actually be max_fd != -1sapier2014-01-101-1/+1
|
* Make MutexQueue use jsemaphore for signalingsapier2014-01-101-1/+1
|
* Send long announce as POST, show OS in useragentproller2014-01-071-0/+25
| | | | | 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 WSAEINVALKahrl2013-12-241-13/+21
|
* Fix broken httpfetch due to SimpleThread removalsapier2013-12-161-0/+3
|
* Fix MSVC compiling issueBlockMen2013-12-161-1/+1
|
* Replace SimpleThread by JThread now implementing same featuressapier2013-12-151-7/+4
|
* Replace any direct curl usage by httpfetchsapier2013-12-131-0/+1
|
* Use httpfetch_async in serverlist announce codeKahrl2013-12-131-0/+4
|
* Implement httpfetch module and initialize it from main()Kahrl2013-12-131-0/+718
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.)