aboutsummaryrefslogtreecommitdiffstats
path: root/req_resp_hdrs.c
AgeCommit message (Collapse)AuthorFilesLines
2004-07-18Set the svn:eol-style property on all text files to "native", so thatGuy Harris1-1/+1
they have LF at the end of the line on UN*X and CR/LF on Windows; hopefully this means that if a CR/LF version is checked in on Windows, the CRs will be stripped so that they show up only when checked out on Windows, not on UN*X. svn path=/trunk/; revision=11400
2004-05-04"tvb_get_string()" returns a pointer to "g_malloc()"ed data, so you haveGuy Harris1-31/+30
to free it when you're done with it. It never returns a null pointer, however, so there's no need to check for that. Clean up the code to process Transfer-Encoding a bit. svn path=/trunk/; revision=10786
2004-04-26From Jerry Talkington:Olivier Biot1-21/+170
- Dissect chunked transfer-coded body in HTTP - Update email address svn path=/trunk/; revision=10710
2003-12-29From RFC 2616: "Field names are case-insensitive." UseGuy Harris1-2/+2
"tvb_strncaseeql()", not "tvb_strneql()", to check for "Content-Length:". svn path=/trunk/; revision=9486
2003-12-24In the loop that processes lines in HTTP requests and replies, loop asGuy Harris1-8/+29
long as there's reported data, don't just loop through the data in the tvbuff. Fix some problems with short frames. svn path=/trunk/; revision=9438
2003-12-23Not all headers in HTTP, RTSP, SIP, etc. are entity headers; rename someGuy Harris1-0/+170
files, routines, data structures, etc.. svn path=/trunk/; revision=9428