blob: f4c2a0525e3ca7d644495d428b9a5a025576c06f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/*
* HTTP Cookies
* Reads Netscape and Mozilla cookies.txt files
*
* by Dave Lambley <mplayer@davel.me.uk>
*/
#ifndef MPLAYER_COOKIES_H
#define MPLAYER_COOKIES_H
#include "http.h"
void cookies_set(HTTP_header_t * http_hdr, const char *hostname,
const char *url);
#endif /* MPLAYER_COOKIES_H */
|