summaryrefslogtreecommitdiffstats
path: root/usr.bin/ftp/extern.h
diff options
context:
space:
mode:
authorpyr <pyr@openbsd.org>2007-06-13 13:52:26 +0000
committerpyr <pyr@openbsd.org>2007-06-13 13:52:26 +0000
commite7c4842a38ca9e7e90f41d6d00eb57cad37824cb (patch)
tree42d63a930f35416b8a621ac07e829b93dd733ec4 /usr.bin/ftp/extern.h
parentRemove some statics and inlines (mostly to get a readable profile output). (diff)
downloadwireguard-openbsd-e7c4842a38ca9e7e90f41d6d00eb57cad37824cb.tar.xz
wireguard-openbsd-e7c4842a38ca9e7e90f41d6d00eb57cad37824cb.zip
Enable cookie support. This allows parsing of netscape-like cookie jars
and sending of appropriate cookies. No retrieval of new cookies is done. Careful review and lots of input by millert and ray. ok millert@, ray@
Diffstat (limited to 'usr.bin/ftp/extern.h')
-rw-r--r--usr.bin/ftp/extern.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/ftp/extern.h b/usr.bin/ftp/extern.h
index 37287a60f60..864913387d6 100644
--- a/usr.bin/ftp/extern.h
+++ b/usr.bin/ftp/extern.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: extern.h,v 1.29 2007/06/06 19:15:33 pyr Exp $ */
+/* $OpenBSD: extern.h,v 1.30 2007/06/13 13:52:26 pyr Exp $ */
/* $NetBSD: extern.h,v 1.17 1997/08/18 10:20:19 lukem Exp $ */
/*
@@ -191,6 +191,8 @@ void user(int, char **);
#ifndef SMALL
int ruserpass(const char *, char **, char **, char **);
+void cookie_load(void);
+void cookie_get(const char *, const char *, int, char **);
#endif