3 * by Bertrand Baudet <bertrand_baudet@yahoo.com>
4 * (C) 2001, MPlayer team.
10 typedef struct HTTP_field_type
{
12 struct HTTP_field_type
*next
;
19 unsigned int status_code
;
21 unsigned int http_minor_version
;
23 HTTP_field_t
*first_field
;
24 HTTP_field_t
*last_field
;
25 unsigned int field_nb
;
27 HTTP_field_t
*field_search_pos
;
33 unsigned int is_parsed
;
36 HTTP_header_t
* http_new_header(void);
37 void http_free( HTTP_header_t
*http_hdr
);
38 int http_response_append( HTTP_header_t
*http_hdr
, char *data
, int length
);
39 int http_response_parse( HTTP_header_t
*http_hdr
);
40 int http_is_header_entire( HTTP_header_t
*http_hdr
);
41 char* http_build_request( HTTP_header_t
*http_hdr
);
42 char* http_get_field( HTTP_header_t
*http_hdr
, const char *field_name
);
43 char* http_get_next_field( HTTP_header_t
*http_hdr
);
44 void http_set_field( HTTP_header_t
*http_hdr
, const char *field_name
);
45 void http_set_method( HTTP_header_t
*http_hdr
, const char *method
);
46 void http_set_uri( HTTP_header_t
*http_hdr
, const char *uri
);
47 int http_add_basic_authentication( HTTP_header_t
*http_hdr
, const char *username
, const char *password
);
49 void http_debug_hdr( HTTP_header_t
*http_hdr
);
51 int base64_encode(const void *enc
, int encLen
, char *out
, int outMax
);