uri

uri —

Synopsis




struct      xmlURI;
typedef     xmlURIPtr;

Description

Details

struct xmlURI

struct xmlURI {

    char *scheme;	/* the URI scheme */
    char *opaque;	/* opaque part */
    char *authority;	/* the authority part */
    char *server;	/* the server part */
    char *user;		/* the user part */
    int port;		/* the port number */
    char *path;		/* the path string */
    char *query;	/* the query string */
    char *fragment;	/* the fragment identifier */
    int  cleanup;	/* parsing potentially unclean URI */
};

A parsed URI reference. This is a struct containing the various fields as described in RFC 2396 but separated for further processing.


xmlURIPtr

typedef xmlURI *xmlURIPtr;