Mercurial > mplayer.hg
annotate libmpdemux/url.h @ 2879:a3410c946b54
ignore mov detection if first chunk bad
author | arpi |
---|---|
date | Tue, 13 Nov 2001 21:11:10 +0000 |
parents | 9e059416eea6 |
children | 9fad4017ec37 |
rev | line source |
---|---|
902 | 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 | |
833 | 9 |
10 typedef struct { | |
11 char *url; | |
12 char *protocol; | |
13 char *hostname; | |
840 | 14 char *file; |
833 | 15 unsigned int port; |
902 | 16 char *username; |
17 char *password; | |
833 | 18 } URL_t; |
19 | |
902 | 20 URL_t* url_new(char* url); |
21 void url_free(URL_t* url); | |
833 | 22 |
23 #endif |