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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
typedef struct Client Client;
typedef struct Ctl Ctl;
typedef struct Ibuf Ibuf;
typedef struct Url Url;
/* simple buffered i/o for network connections; shared by http, ftp */
struct Ibuf
{
int fd;
Ioproc *io;
char buf[4096];
char *rp, *wp;
};
struct Ctl
{
int acceptcookies;
int sendcookies;
int redirectlimit;
char *useragent;
};
struct Client
{
Url *url;
Url *baseurl;
Ctl ctl;
Channel *creq; /* chan(Req*) */
int num;
int plumbed;
char *contenttype;
char *postbody;
char *redirect;
char *authenticate;
char *ext;
int npostbody;
int havepostbody;
int iobusy;
int bodyopened;
Ioproc *io;
int ref;
void *aux;
};
/*
* If ischeme is USunknown, then the given URL is a relative
* URL which references the "current document" in the context of the base.
* If this is the case, only the "fragment" and "url" members will have
* meaning, and the given URL structure may not be used as a base URL itself.
*/
enum
{
USunknown,
UShttp,
UShttps,
USftp,
USfile,
UScurrent,
};
struct Url
{
int ischeme;
char* url;
char* scheme;
int (*open)(Client*, Url*);
int (*read)(Client*, Req*);
void (*close)(Client*);
char* schemedata;
char* authority;
char* user;
char* passwd;
char* host;
char* port;
char* path;
char* query;
char* fragment;
union {
struct {
char *page_spec;
} http;
struct {
char *path_spec;
char *type;
} ftp;
};
};
enum
{
STACK = 32*1024, /* was 16*1024; there are big arrays on the stack */
};
extern Client** client;
extern int cookiedebug;
extern Srv fs;
extern int fsdebug;
extern Ctl globalctl;
extern int nclient;
extern int urldebug;
extern int httpdebug;
extern char* status[];
|