Fix compilation: #undef standard library functions that are
[mplayer/glamo.git] / stream / http.h
blob849ebf06a3add43aa194ae79b7f29baa5045b509
1 /*
2 * HTTP Helper
3 * by Bertrand Baudet <bertrand_baudet@yahoo.com>
4 * (C) 2001, MPlayer team.
5 */
7 #ifndef MPLAYER_HTTP_H
8 #define MPLAYER_HTTP_H
10 #include <sys/types.h>
12 typedef struct HTTP_field_type {
13 char *field_name;
14 struct HTTP_field_type *next;
15 } HTTP_field_t;
17 typedef struct {
18 char *protocol;
19 char *method;
20 char *uri;
21 unsigned int status_code;
22 char *reason_phrase;
23 unsigned int http_minor_version;
24 // Field variables
25 HTTP_field_t *first_field;
26 HTTP_field_t *last_field;
27 unsigned int field_nb;
28 char *field_search;
29 HTTP_field_t *field_search_pos;
30 // Body variables
31 char *body;
32 size_t body_size;
33 char *buffer;
34 size_t buffer_size;
35 unsigned int is_parsed;
36 } HTTP_header_t;
38 HTTP_header_t* http_new_header(void);
39 void http_free( HTTP_header_t *http_hdr );
40 int http_response_append( HTTP_header_t *http_hdr, char *data, int length );
41 int http_response_parse( HTTP_header_t *http_hdr );
42 int http_is_header_entire( HTTP_header_t *http_hdr );
43 char* http_build_request( HTTP_header_t *http_hdr );
44 char* http_get_field( HTTP_header_t *http_hdr, const char *field_name );
45 char* http_get_next_field( HTTP_header_t *http_hdr );
46 void http_set_field( HTTP_header_t *http_hdr, const char *field_name );
47 void http_set_method( HTTP_header_t *http_hdr, const char *method );
48 void http_set_uri( HTTP_header_t *http_hdr, const char *uri );
49 int http_add_basic_authentication( HTTP_header_t *http_hdr, const char *username, const char *password );
51 void http_debug_hdr( HTTP_header_t *http_hdr );
53 int base64_encode(const void *enc, int encLen, char *out, int outMax);
54 #endif /* MPLAYER_HTTP_H */