comparison libmpdemux/url.h @ 2310:9e059416eea6

libdemuxer...
author arpi
date Sat, 20 Oct 2001 18:49:08 +0000
parents url.h@ede5785faa53
children 9fad4017ec37
comparison
equal deleted inserted replaced
2309:3128b9d8b4ea 2310:9e059416eea6
1 /*
2 * URL Helper
3 * by Bertrand Baudet <bertrand_baudet@yahoo.com>
4 * (C) 2001, MPlayer team.
5 */
6
7 #ifndef __URL_H
8 #define __URL_H
9
10 typedef struct {
11 char *url;
12 char *protocol;
13 char *hostname;
14 char *file;
15 unsigned int port;
16 char *username;
17 char *password;
18 } URL_t;
19
20 URL_t* url_new(char* url);
21 void url_free(URL_t* url);
22
23 #endif