67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
Blob cgiIn; /* Input to an xfer www method */
int cgiPanic; /* Write error messages to CGI */
int urlIsFile; /* True if a "file:" url */
char *urlName; /* Hostname for http: or filename for file: */
int urlPort; /* TCP port number for http: */
char *urlPath; /* Pathname for http: */
char *urlCanonical; /* Canonical representation of the URL */
const char *zLogin; /* Login name. "" if not logged in. */
int isAnon; /* True if logged in anoymously */
int noPswd; /* Logged in without password (on 127.0.0.1) */
int userUid; /* Integer user id */
|
>
>
|
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
Blob cgiIn; /* Input to an xfer www method */
int cgiPanic; /* Write error messages to CGI */
int urlIsFile; /* True if a "file:" url */
char *urlName; /* Hostname for http: or filename for file: */
int urlPort; /* TCP port number for http: */
char *urlPath; /* Pathname for http: */
char *urlUser; /* User id for http: */
char *urlPasswd; /* Password for http: */
char *urlCanonical; /* Canonical representation of the URL */
const char *zLogin; /* Login name. "" if not logged in. */
int isAnon; /* True if logged in anoymously */
int noPswd; /* Logged in without password (on 127.0.0.1) */
int userUid; /* Integer user id */
|