mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
de88a69286
protocols underlying the Web.
61 lines
1.5 KiB
C
61 lines
1.5 KiB
C
/*
|
|
* The contents of this file are subject to the Mozilla Public
|
|
* License Version 1.1 (the "License"); you may not use this file
|
|
* except in compliance with the License. You may obtain a copy of
|
|
* the License at http://www.mozilla.org/MPL/
|
|
*
|
|
* Software distributed under the License is distributed on an "AS
|
|
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
* implied. See the License for the specific language governing
|
|
* rights and limitations under the License.
|
|
*
|
|
* The Original Code is Web Sniffer.
|
|
*
|
|
* The Initial Developer of the Original Code is Erik van der Poel.
|
|
* Portions created by Erik van der Poel are
|
|
* Copyright (C) 1998,1999,2000 Erik van der Poel.
|
|
* All Rights Reserved.
|
|
*
|
|
* Contributor(s):
|
|
*/
|
|
|
|
#ifndef _URL_H_
|
|
#define _URL_H_
|
|
|
|
/* <scheme>://<net_loc>/<path>;<params>?<query>#<fragment> */
|
|
|
|
/* <net_loc> = <login>:<password>@<host>:<port> */
|
|
|
|
typedef struct URL
|
|
{
|
|
/* standard components */
|
|
unsigned char *scheme;
|
|
unsigned char *net_loc;
|
|
unsigned char *path;
|
|
unsigned char *params;
|
|
unsigned char *query;
|
|
unsigned char *fragment;
|
|
|
|
/* the whole url */
|
|
unsigned char *url;
|
|
|
|
/* for convenience */
|
|
unsigned char *file;
|
|
unsigned char *host;
|
|
unsigned char *login;
|
|
unsigned char *password;
|
|
unsigned char *pathWithoutFile;
|
|
int port;
|
|
|
|
/* for linked list */
|
|
struct URL *next;
|
|
} URL;
|
|
|
|
void urlDecode(unsigned char *url);
|
|
void urlFree(URL *url);
|
|
URL *urlParse(const unsigned char *url);
|
|
URL *urlRelative(const unsigned char *baseURL,
|
|
const unsigned char *relativeURL);
|
|
|
|
#endif /* _URL_H_ */
|