2001-05-29 16:58:52 +00:00
|
|
|
/*
|
|
|
|
* HTTP Helper
|
|
|
|
* by Bertrand Baudet <bertrand_baudet@yahoo.com>
|
|
|
|
* (C) 2001, MPlayer team.
|
|
|
|
*/
|
|
|
|
|
2008-02-22 09:09:46 +00:00
|
|
|
#ifndef MPLAYER_HTTP_H
|
|
|
|
#define MPLAYER_HTTP_H
|
2001-05-25 13:58:32 +00:00
|
|
|
|
2008-03-10 19:28:42 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
|
2001-11-20 22:14:16 +00:00
|
|
|
typedef struct HTTP_field_type {
|
|
|
|
char *field_name;
|
|
|
|
struct HTTP_field_type *next;
|
|
|
|
} HTTP_field_t;
|
2001-05-25 13:58:32 +00:00
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
char *protocol;
|
|
|
|
char *method;
|
|
|
|
char *uri;
|
2002-10-29 09:18:53 +00:00
|
|
|
unsigned int status_code;
|
2001-05-25 13:58:32 +00:00
|
|
|
char *reason_phrase;
|
2002-10-29 09:18:53 +00:00
|
|
|
unsigned int http_minor_version;
|
2001-11-20 22:14:16 +00:00
|
|
|
// Field variables
|
|
|
|
HTTP_field_t *first_field;
|
|
|
|
HTTP_field_t *last_field;
|
2002-10-29 09:18:53 +00:00
|
|
|
unsigned int field_nb;
|
2001-05-25 13:58:32 +00:00
|
|
|
char *field_search;
|
2001-11-20 22:14:16 +00:00
|
|
|
HTTP_field_t *field_search_pos;
|
2002-06-23 09:16:08 +00:00
|
|
|
// Body variables
|
2001-05-25 13:58:32 +00:00
|
|
|
char *body;
|
2002-10-29 09:18:53 +00:00
|
|
|
size_t body_size;
|
2001-05-29 16:58:52 +00:00
|
|
|
char *buffer;
|
2002-10-29 09:18:53 +00:00
|
|
|
size_t buffer_size;
|
|
|
|
unsigned int is_parsed;
|
2001-05-25 13:58:32 +00:00
|
|
|
} HTTP_header_t;
|
|
|
|
|
2006-02-09 14:08:03 +00:00
|
|
|
HTTP_header_t* http_new_header(void);
|
2001-05-25 13:58:32 +00:00
|
|
|
void http_free( HTTP_header_t *http_hdr );
|
2001-05-29 16:58:52 +00:00
|
|
|
int http_response_append( HTTP_header_t *http_hdr, char *data, int length );
|
|
|
|
int http_response_parse( HTTP_header_t *http_hdr );
|
2001-10-26 18:26:06 +00:00
|
|
|
int http_is_header_entire( HTTP_header_t *http_hdr );
|
2001-05-29 16:58:52 +00:00
|
|
|
char* http_build_request( HTTP_header_t *http_hdr );
|
2001-05-25 13:58:32 +00:00
|
|
|
char* http_get_field( HTTP_header_t *http_hdr, const char *field_name );
|
|
|
|
char* http_get_next_field( HTTP_header_t *http_hdr );
|
2001-11-20 22:14:16 +00:00
|
|
|
void http_set_field( HTTP_header_t *http_hdr, const char *field_name );
|
2001-05-25 13:58:32 +00:00
|
|
|
void http_set_method( HTTP_header_t *http_hdr, const char *method );
|
|
|
|
void http_set_uri( HTTP_header_t *http_hdr, const char *uri );
|
2002-06-23 09:16:08 +00:00
|
|
|
int http_add_basic_authentication( HTTP_header_t *http_hdr, const char *username, const char *password );
|
2001-05-25 13:58:32 +00:00
|
|
|
|
|
|
|
void http_debug_hdr( HTTP_header_t *http_hdr );
|
|
|
|
|
2002-06-23 09:16:08 +00:00
|
|
|
int base64_encode(const void *enc, int encLen, char *out, int outMax);
|
2008-02-22 09:09:46 +00:00
|
|
|
#endif /* MPLAYER_HTTP_H */
|