1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
|
/*
* Copyright 2004-2005 Timo Hirvonen
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
* 02111-1307, USA.
*/
#ifndef _HTTP_H
#define _HTTP_H
/*
* 1xx indicates an informational message only
* 2xx indicates success of some kind
* 3xx redirects the client to another URL
* 4xx indicates an error on the client's part
* 5xx indicates an error on the server's part
*/
struct http_header {
char *key;
char *val;
};
struct http_uri {
char *user;
char *pass;
char *host;
char *path;
int port;
};
int http_parse_uri(const char *uri, struct http_uri *u);
/* frees contents of @u, not @u itself */
void http_free_uri(struct http_uri *u);
int http_open(const char *hostname, unsigned int port, int timeout_ms);
/*
* returns: 0 success
* -1 check errno
* -2 parse error
*/
int http_get(int fd, const char *path, struct http_header *headers, int *codep,
char **errp, struct http_header **ret_headersp, int timeout_ms);
int http_read_body(int fd, char **bodyp, int timeout_ms);
const char *http_headers_get_value(const struct http_header *headers, const char *key);
void http_headers_free(struct http_header *headers);
char *base64_encode(const char *str);
#endif
|