2001-05-29 16:58:52 +00:00
|
|
|
/*
|
|
|
|
* URL Helper
|
|
|
|
* by Bertrand Baudet <bertrand_baudet@yahoo.com>
|
|
|
|
* (C) 2001, MPlayer team.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __URL_H
|
|
|
|
#define __URL_H
|
2001-05-18 16:14:06 +00:00
|
|
|
|
2002-01-12 21:02:00 +00:00
|
|
|
//#define __URL_DEBUG
|
|
|
|
|
2001-05-18 16:14:06 +00:00
|
|
|
typedef struct {
|
|
|
|
char *url;
|
|
|
|
char *protocol;
|
|
|
|
char *hostname;
|
2001-05-20 12:42:14 +00:00
|
|
|
char *file;
|
2001-05-18 16:14:06 +00:00
|
|
|
unsigned int port;
|
2001-05-29 16:58:52 +00:00
|
|
|
char *username;
|
|
|
|
char *password;
|
2001-05-18 16:14:06 +00:00
|
|
|
} URL_t;
|
|
|
|
|
2003-03-26 11:27:48 +00:00
|
|
|
URL_t* url_new(const char* url);
|
2001-05-29 16:58:52 +00:00
|
|
|
void url_free(URL_t* url);
|
2001-05-18 16:14:06 +00:00
|
|
|
|
2003-03-26 11:27:48 +00:00
|
|
|
void url_unescape_string(char *outbuf, const char *inbuf);
|
|
|
|
void url_escape_string(char *outbuf, const char *inbuf);
|
2001-12-14 23:48:47 +00:00
|
|
|
|
2002-09-05 05:04:12 +00:00
|
|
|
#ifdef __URL_DEBUG
|
2003-03-26 11:27:48 +00:00
|
|
|
void url_debug(const URL_t* url);
|
2002-01-12 21:02:00 +00:00
|
|
|
#endif // __URL_DEBUG
|
|
|
|
|
|
|
|
#endif // __URL_H
|