diff options
author | Fumitoshi UKAI <ukai@debian.or.jp> | 2002-10-30 15:39:41 +0000 |
---|---|---|
committer | Fumitoshi UKAI <ukai@debian.or.jp> | 2002-10-30 15:39:41 +0000 |
commit | 46e147cf1f9dd6080337bc80208f930d217e2264 (patch) | |
tree | a4ac824b2c827d9399b9bdb694ee8e43a257820a /proto.h | |
parent | [w3m-dev 03357] tab in <pre> in <ul>,<ol>,... (diff) | |
download | w3m-46e147cf1f9dd6080337bc80208f930d217e2264.tar.gz w3m-46e147cf1f9dd6080337bc80208f930d217e2264.zip |
[w3m-dev 03359] support for http://user:pass@www.url.com
* etc.c (find_auth_user_passwd): use ParsedURL for args
use user and passwd if these are defined in ParsedURL
* file.c (getAuthCookie): change find_auth_user_passwd()
* proto.h (find_auth_user_passwd): change prototype
From: Fumitoshi UKAI <ukai@debian.or.jp>
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $Id: proto.h,v 1.47 2002/09/24 16:35:02 ukai Exp $ */ +/* $Id: proto.h,v 1.48 2002/10/30 15:39:41 ukai Exp $ */ /* * This file was automatically generated by version 1.7 of cextract. * Manual editing not recommended. @@ -521,7 +521,7 @@ extern void set_environ(char *var, char *value); extern FILE *localcgi_post(char *, char *, FormList *, char *); extern FILE *localcgi_get(char *, char *, char *); extern void loadPasswd(void); -extern int find_auth_user_passwd(char *host, int port, char *file, char *realm, +extern int find_auth_user_passwd(ParsedURL *pu, char *realm, Str *uname, Str *pwd, int is_proxy); extern Str find_auth_cookie(char *host, int port, char *file, char *realm); extern void add_auth_cookie(char *host, int port, char *file, char *realm, |