blob: 4f5c4f75114438e9defea3c0bbc75d63e113e460 (
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 COOKIES_H
#define COOKIES_H
#include "http.h"
extern void cookies_set(HTTP_header_t * http_hdr, const char *hostname,
const char *url);
#endif /* COOKIES_H */
|