Add offset field to struct url

This commit is contained in:
Dag-Erling Smørgrav 2000-05-07 19:46:33 +00:00
parent 327ad7e530
commit fd75cc902e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=60183

View File

@ -40,6 +40,7 @@
#define URL_PWDLEN 256
struct url {
off_t offset;
char scheme[URL_SCHEMELEN+1];
char user[URL_USERLEN+1];
char pwd[URL_PWDLEN+1];