ferror_body_response...
- Returns a standard HTML response page for an HTTP error.
Note: Deprecated
ferror_response...
- Returns the status, headers, and body of an error response.
fremove_header...
- Removes the named header from the list of headers. Returns the
value of that header, or None if no header found. If multiple
headers are found, only the last one is returned.
freplace_header...
- Updates the headers replacing the first occurance of the given name
with the value provided; asserting that no further occurances
happen. Note that this is _not_ the same as remove_header and then
append, as two distinct operations (del followed by an append) are
not atomic in a threaded environment. Returns the previous header
value for the provided name, if any. Clearly one should not use
this function with set-cookie or other names that may have more
than one occurance in the headers.
fheader_value...
- Returns the header's value, or None if no such header. If a
header appears more than once, all the values of the headers
are joined with ','. Note that this is consistent /w RFC 2616
section 4.2 which states:
fhas_header...
- Is header named name present in headers?