Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Move proxy-related fields after the other url-related fields. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | jan-httpsproxytunnel |
| Files: | files | file ages | folders |
| SHA1: |
45107553c06bb22f7f61a89f376e8a3a |
| User & Date: | jan.nijtmans 2013-11-12 15:49:45.224 |
Context
|
2013-11-14
| ||
| 04:34 | Set the error message to indicate the HTTP status code returned on CONNECT to avoid segfault. ... (check-in: 87d5fef9ce user: andybradford tags: jan-httpsproxytunnel) | |
|
2013-11-12
| ||
| 15:49 | Move proxy-related fields after the other url-related fields. ... (check-in: 45107553c0 user: jan.nijtmans tags: jan-httpsproxytunnel) | |
| 15:27 | merge trunk ... (check-in: 1bd561c3ba user: jan.nijtmans tags: jan-httpsproxytunnel) | |
Changes
Changes to src/main.c.
| ︙ | ︙ | |||
177 178 179 180 181 182 183 | char *urlProtocol; /* "http" or "https" */ int urlPort; /* TCP port number for http: or https: */ int urlDfltPort; /* The default port for the given protocol */ char *urlPath; /* Pathname for http: */ char *urlUser; /* User id for http: */ char *urlPasswd; /* Password for http: */ char *urlCanonical; /* Canonical representation of the URL */ | < < < > > > | 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 |
char *urlProtocol; /* "http" or "https" */
int urlPort; /* TCP port number for http: or https: */
int urlDfltPort; /* The default port for the given protocol */
char *urlPath; /* Pathname for http: */
char *urlUser; /* User id for http: */
char *urlPasswd; /* Password for http: */
char *urlCanonical; /* Canonical representation of the URL */
char *urlProxyAuth; /* Proxy-Authorizer: string */
char *urlFossil; /* The fossil query parameter on ssh: */
unsigned urlFlags; /* Boolean flags controlling URL processing */
int useProxy; /* Used to remember that a proxy is in use */
char *proxyUrlPath;
int proxyOrigPort; /* Tunneled port number for https through proxy */
const char *zLogin; /* Login name. "" if not logged in. */
const char *zSSLIdentity; /* Value of --ssl-identity option, filename of
** SSL client identity */
int useLocalauth; /* No login required if from 127.0.0.1 */
int noPswd; /* Logged in without password (on 127.0.0.1) */
int userUid; /* Integer user id */
|
| ︙ | ︙ |