summaryrefslogtreecommitdiffstats
path: root/libmpdemux/cookies.h
diff options
context:
space:
mode:
Diffstat (limited to 'libmpdemux/cookies.h')
-rw-r--r--libmpdemux/cookies.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/libmpdemux/cookies.h b/libmpdemux/cookies.h
new file mode 100644
index 0000000000..e4b1f13f9b
--- /dev/null
+++ b/libmpdemux/cookies.h
@@ -0,0 +1,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