comparison url.h @ 833:b8cecdc0c67f

Starting implementation of ASF network streaming.
author bertrand
date Fri, 18 May 2001 16:14:06 +0000
parents
children 9141234715a2
comparison
equal deleted inserted replaced
832:369697a87773 833:b8cecdc0c67f
1 #ifndef URL_H
2 #define URL_H
3
4 typedef struct {
5 char *url;
6 char *protocol;
7 char *hostname;
8 char *path;
9 unsigned int port;
10 } URL_t;
11
12 URL_t* set_url(char* url);
13 void free_url(URL_t* url);
14
15 #endif