summaryrefslogtreecommitdiff
path: root/src/ne_uri.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ne_uri.h')
-rw-r--r--src/ne_uri.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/ne_uri.h b/src/ne_uri.h
index b03a832..d152aed 100644
--- a/src/ne_uri.h
+++ b/src/ne_uri.h
@@ -57,10 +57,9 @@ unsigned int ne_uri_defaultport(const char *scheme);
typedef struct {
char *scheme;
- char *host;
+ char *host, *userinfo;
unsigned int port;
- char *path;
- char *authinfo;
+ char *path, *query, *fragment;
} ne_uri;
/* Parse a URI-reference 'uri' and place parsed components in *parsed.