2001-05-29 16:58:52 +00:00
|
|
|
/*
|
|
|
|
* URL Helper
|
|
|
|
* by Bertrand Baudet <bertrand_baudet@yahoo.com>
|
|
|
|
* (C) 2001, MPlayer team.
|
|
|
|
*/
|
|
|
|
|
2007-07-02 22:34:45 +00:00
|
|
|
#ifndef URL_H
|
|
|
|
#define URL_H
|
2001-05-18 16:14:06 +00:00
|
|
|
|
2007-07-02 22:34:45 +00:00
|
|
|
//#define URL_DEBUG
|
2002-01-12 21:02:00 +00:00
|
|
|
|
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;
|
|
|
|
|
2006-11-08 22:42:31 +00:00
|
|
|
URL_t *url_redirect(URL_t **url, const char *redir);
|
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
|
|
|
|
2007-07-02 22:34:45 +00:00
|
|
|
#ifdef URL_DEBUG
|
2003-03-26 11:27:48 +00:00
|
|
|
void url_debug(const URL_t* url);
|
2007-07-02 22:34:45 +00:00
|
|
|
#endif /* URL_DEBUG */
|
2002-01-12 21:02:00 +00:00
|
|
|
|
2007-07-02 22:34:45 +00:00
|
|
|
#endif /* URL_H */
|