![]() |
MHEG-5
19.3.0
MHEG-5 Documentation
|
Go to the source code of this file.
Functions | |
U8BIT * | httpHdrParseFieldName (U8BIT *data, U32BIT len, E_HTTP_FIELD *field) |
Parse field for its name in an HTTP header. More... | |
U64BIT | httpHdrParseContentLength (U8BIT *data, U32BIT len) |
Parse "Content-Length" header and return the content length in bytes. More... | |
U64BIT | httpHdrParseContentRange (U8BIT *data, U32BIT len) |
Parse "Content-Range" header and return the content length in bytes. More... | |
Definition in file http_header.h.
U64BIT httpHdrParseContentLength | ( | U8BIT * | data, |
U32BIT | len | ||
) |
Parse "Content-Length" header and return the content length in bytes.
data | Header data |
len | Size of header data in bytes |
Definition at line 147 of file http_header.c.
U64BIT httpHdrParseContentRange | ( | U8BIT * | data, |
U32BIT | len | ||
) |
Parse "Content-Range" header and return the content length in bytes.
data | Header data |
len | Size of header data in bytes |
Definition at line 177 of file http_header.c.
U8BIT* httpHdrParseFieldName | ( | U8BIT * | data, |
U32BIT | len, | ||
E_HTTP_FIELD * | field | ||
) |
Parse field for its name in an HTTP header.
data | Header data |
len | Size of header data in bytes |
field | pointer to enum value for the field type |
Definition at line 78 of file http_header.c.