aboutsummaryrefslogtreecommitdiffstats
path: root/lib/http_client.h
Commit message (Collapse)AuthorAgeLines
* Reindent everything to K&R style with tabsIndent2015-02-20-18/+17
| | | | | | | Used uncrustify, with the configuration file in ./doc/uncrustify.cfg Commit author set to "Indent <please@skip.me>" so that it's easier to skip while doing git blame.
* Fix incorrect Free Software Foundation addressMatej Cepl2015-01-16-2/+2
|
* Add better handling of HTTP/1.1 and/or keepalive connections. This shouldWilmer van der Gaast2013-06-09-0/+6
| | | | | | let me close #641, and more importantly, prepares the Twitter module for an upcoming API change. https://dev.twitter.com/blog/deprecating-http-1.0-streaming-api
* I'm still bored on a long flight. Wrote a script to automatically updateWilmer van der Gaast2013-02-21-1/+1
| | | | | | | my copyright mentions since some were getting pretty stale. Left files not touched since before 2012 alone so that this change doesn't touch almost EVERY source file.
* Have root confirm some commands that so far gave no feedback at all, sinceWilmer van der Gaast2012-11-25-0/+2
| | | | | "no news is good news" can be a little confusing.
* Detect and handle streaming connection loss.Wilmer van der Gaast2012-11-11-0/+1
|
* Mostly finished HTTP streaming support: Shrink the buffer and add aWilmer van der Gaast2012-11-11-0/+1
| | | | | http_close().
* Reworked http_client a little bit to support streaming besides just bufferingWilmer van der Gaast2012-11-10-15/+21
| | | | | a complete response before giving it back to the caller.
* Solve a whole bunch of Twitter module crashes: Twitter responses seem toWilmer van der Gaast2012-09-22-1/+1
| | | | | | be getting truncated sometimes. Treat this as an error in http_client already instead of returning partial data.
* No idea why http_dorequest() ever returned void*. Don't hide the type, it'sWilmer van der Gaast2010-07-17-4/+2
| | | | | not a secret (the pointer is shared with a type later anyway).
* Don't be a dumbass and stop following redirects if there doesn't seem toWilmer van der Gaast2010-07-16-0/+2
| | | | | be an end.
* Fixed crappy memory management in http_client.Wilmer van der Gaast2008-09-28-0/+2
|
* Added some (more) comments to .h files in lib/ and some minor fixes/cleanups.Wilmer van der Gaast2006-07-19-10/+35
|
* Moving all generic files to lib/ instead of having some in / and some inWilmer van der Gaast2006-06-25-0/+57
protocols/, and adding RC4 code.