| 1 |
/********************************************************************\
|
| 2 |
* Axel -- A lighter download accelerator for Linux and other Unices. *
|
| 3 |
* *
|
| 4 |
* Copyright 2001 Wilmer van der Gaast *
|
| 5 |
\********************************************************************/
|
| 6 |
|
| 7 |
/* HTTP control include file */
|
| 8 |
|
| 9 |
/*
|
| 10 |
This program is free software; you can redistribute it and/or modify
|
| 11 |
it under the terms of the GNU General Public License as published by
|
| 12 |
the Free Software Foundation; either version 2 of the License, or
|
| 13 |
(at your option) any later version.
|
| 14 |
|
| 15 |
This program is distributed in the hope that it will be useful,
|
| 16 |
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
| 17 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
| 18 |
GNU General Public License for more details.
|
| 19 |
|
| 20 |
You should have received a copy of the GNU General Public License with
|
| 21 |
the Debian GNU/Linux distribution in file /usr/doc/copyright/GPL;
|
| 22 |
if not, write to the Free Software Foundation, Inc., 59 Temple Place,
|
| 23 |
Suite 330, Boston, MA 02111-1307 USA
|
| 24 |
*/
|
| 25 |
|
| 26 |
#define MAX_QUERY 2048 /* Should not grow larger.. */
|
| 27 |
|
| 28 |
typedef struct
|
| 29 |
{
|
| 30 |
char host[MAX_STRING];
|
| 31 |
char auth[MAX_STRING];
|
| 32 |
char request[MAX_QUERY];
|
| 33 |
char headers[MAX_QUERY];
|
| 34 |
int proto; /* FTP through HTTP proxies */
|
| 35 |
int proxy;
|
| 36 |
long long int firstbyte;
|
| 37 |
long long int lastbyte;
|
| 38 |
int status;
|
| 39 |
int fd;
|
| 40 |
char *local_if;
|
| 41 |
} http_t;
|
| 42 |
|
| 43 |
int http_connect( http_t *conn, int proto, char *proxy, char *host, int port, char *user, char *pass );
|
| 44 |
void http_disconnect( http_t *conn );
|
| 45 |
void http_get( http_t *conn, char *lurl );
|
| 46 |
void http_addheader( http_t *conn, char *format, ... );
|
| 47 |
int http_exec( http_t *conn );
|
| 48 |
char *http_header( http_t *conn, char *header );
|
| 49 |
long long int http_size( http_t *conn );
|
| 50 |
void http_encode( char *s );
|
| 51 |
void http_decode( char *s );
|