XMMS2
url.h
Go to the documentation of this file.
1 #ifndef XMMS_URL_H
2 #define XMMS_URL_H
3 
4 struct xmms_url_St {
5  char *protocol;
6  char *username, *password;
7 
8  int ipv6_host;
9  char *host, *port;
10 
11  char *path;
12 };
13 
14 typedef struct xmms_url_St xmms_url_t;
15 
16 xmms_url_t *parse_url(const char *);
17 void free_url(xmms_url_t *);
18 
19 #endif /* XMMS_URL_H */