comparison stream/cookies.h @ 19271:64d82a45a05d

introduce new 'stream' directory for all stream layer related components and split them from libmpdemux
author ben
date Mon, 31 Jul 2006 17:39:17 +0000
parents libmpdemux/cookies.h@2af52902e7dc
children 3f0d00abc073
comparison
equal deleted inserted replaced
19270:7d39b911f0bd 19271:64d82a45a05d
1 /*
2 * HTTP Cookies
3 * Reads Netscape and Mozilla cookies.txt files
4 *
5 * by Dave Lambley <mplayer@davel.me.uk>
6 */
7
8 #ifndef __COOKIES_H
9 #define __COOKIES_H
10
11 #include "http.h"
12
13 extern void cookies_set(HTTP_header_t * http_hdr, const char *hostname,
14 const char *url);
15
16 #endif