1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-10-01 03:36:26 -04:00

parse_header: document parameters and return value

This commit is contained in:
Kalle Olavi Niemitalo 2012-11-18 17:33:17 +02:00 committed by Kalle Olavi Niemitalo
parent 0386a3e14b
commit 6628a3f477

View File

@ -115,6 +115,31 @@
#define LWS(c) ((c) == ' ' || (c) == ASCII_TAB) #define LWS(c) ((c) == ' ' || (c) == ASCII_TAB)
/** Searches for a message-header with the specified field-name.
*
* @param[in] head
* Where to start searching in the message received from the server.
* This function actually ignores the line to which @a head points,
* and starts searching from the next line. Therefore, when parsing
* an HTTP message, @a head should initially point to the start-line,
* e.g. "HTTP/1.1 200 OK". Alternatively, if the caller has already
* found a message-header and wants to know if there are any more
* message-headers with the same field-name, then @a head can be the
* pointer that a previous call stored in *@a ptr.
* @param[in] item
* The field-name for which this function searches.
* @param[out] ptr
* If @a ptr is not NULL, and this function finds a message-header,
* then this function stores in *@a ptr the address at which the
* field-content begins; the caller may pass that as @a head in a
* later call. Otherwise, this function does not modify *@a ptr.
* @returns
* NULL if not found or out of memory. Otherwise, a copy of the
* field-content of the message-header; the caller must eventually
* mem_free() it.
*
* The terms message-header, field-name, start-line, and field-content
* are defined in RFC 2616 sections 4.1 and 4.2. */
unsigned char * unsigned char *
parse_header(unsigned char *head, const unsigned char *item, unsigned char **ptr) parse_header(unsigned char *head, const unsigned char *item, unsigned char **ptr)
{ {