mirror of
https://github.com/ksherlock/gopher.git
synced 2024-11-19 10:31:29 +00:00
66 lines
1.3 KiB
C
66 lines
1.3 KiB
C
#ifndef __url_h__
|
|
#define __url_h__
|
|
|
|
enum {
|
|
SCHEME_UNKNOWN = -1,
|
|
SCHEME_NONE = 0,
|
|
SCHEME_FILE = 0xfffe,
|
|
SCHEME_FTP = 21,
|
|
SCHEME_GOPHER = 70,
|
|
SCHEME_HTTP = 80,
|
|
SCHEME_HTTPS = 443,
|
|
SCHEME_NNTP = 119,
|
|
SCHEME_TELNET = 23,
|
|
SCHEME_SSH = 22,
|
|
SCHEME_SFTP = 115,
|
|
SCHEME_AFP = 548,
|
|
SCHEME_NFS = 2049
|
|
|
|
};
|
|
|
|
typedef struct URLRange {
|
|
int location;
|
|
int length;
|
|
} URLRange;
|
|
|
|
enum {
|
|
URLComponentScheme,
|
|
URLComponentUser,
|
|
URLComponentPassword,
|
|
URLComponentHost,
|
|
URLComponentPort,
|
|
URLComponentPath,
|
|
URLComponentParams,
|
|
URLComponentQuery,
|
|
URLComponentFragment,
|
|
URLComponentPathAndQuery
|
|
};
|
|
|
|
typedef struct URLComponents {
|
|
|
|
int schemeType;
|
|
int portNumber;
|
|
|
|
URLRange scheme;
|
|
URLRange user;
|
|
URLRange password;
|
|
URLRange host;
|
|
URLRange port;
|
|
URLRange path;
|
|
URLRange params;
|
|
URLRange query;
|
|
URLRange fragment;
|
|
|
|
URLRange pathAndQuery;
|
|
|
|
} URLComponents;
|
|
|
|
int ParseURL(const char *url, int length, URLComponents *components);
|
|
|
|
int URLComponentGet(const char *url, URLComponents *, int, char *);
|
|
int URLComponentGetC(const char *url, URLComponents *, int, char *);
|
|
//int URLComponentGetGS(const char *url, URLComponents *, int, GSString255Ptr);
|
|
|
|
|
|
#endif
|