X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;f=lib%2Furl.h;h=c01c1693f1fae26f16a7b057e9f86d8478adfd56;hb=88200dc6daeeab5e7f402cefbd90ae1f126f8d7a;hp=8f64dad44e1a037be1582df5bf1f73e6af2435aa;hpb=49ed04e2e93a6a5b01058638224621d5c07db01c;p=libucw.git diff --git a/lib/url.h b/lib/url.h index 8f64dad4..c01c1693 100644 --- a/lib/url.h +++ b/lib/url.h @@ -1,7 +1,7 @@ /* * Sherlock Library -- URL Functions * - * (c) 1997 Martin Mares + * (c) 1997--2002 Martin Mares * (c) 2001 Robert Spalek * * This software may be freely distributed and used according to the terms @@ -38,6 +38,7 @@ struct url { byte *protocol; uns protoid; byte *user; + byte *pass; byte *host; uns port; /* ~0 if unspec */ byte *rest; @@ -71,7 +72,7 @@ char *url_error(uns); #define URL_PROTO_HTTP 1 #define URL_PROTO_FTP 2 #define URL_PROTO_FILE 3 -#define URL_PROTO_MAX 5 +#define URL_PROTO_MAX 4 #define URL_PNAMES { "unknown", "http", "ftp", "file" } #define URL_DEFPORTS { ~0, 80, 21, 0 }