blob: f1619110cefff4eeaf68294c5aa0d85c8c91ed7b (
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"
extern void cookies_set(HTTP_header_t * http_hdr, const char *hostname,
const char *url);
#endif /* MPLAYER_COOKIES_H */
|