From 39423023af7a13eff3263c59c7856c5cefbf2484 Mon Sep 17 00:00:00 2001 From: Roger Dingledine Date: Sat, 24 Aug 2002 07:56:34 +0000 Subject: proxies send port in host order as ascii string svn:r83 --- src/httpap/http.c | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'src/httpap/http.c') diff --git a/src/httpap/http.c b/src/httpap/http.c index 09116cec7..9dab57aa9 100644 --- a/src/httpap/http.c +++ b/src/httpap/http.c @@ -8,8 +8,11 @@ /* * Changes : * $Log$ - * Revision 1.1 2002/06/26 22:45:50 arma - * Initial revision + * Revision 1.2 2002/08/24 07:56:22 arma + * proxies send port in host order as ascii string + * + * Revision 1.1.1.1 2002/06/26 22:45:50 arma + * initial commit: current code * * Revision 1.2 2002/04/02 14:27:33 badbytes * Final finishes. @@ -144,6 +147,10 @@ int http_get_dest(unsigned char *rl, unsigned char **addr, unsigned char **port) return -1; /* check for a :port in the address */ + +/* BUG: if there's a : later in the url, eg in google's cache pages, + * this gets confused and fails + */ colon = strchr(start,':'); if (colon) { -- cgit v1.2.3