diff options
author | 2007-06-13 13:52:26 +0000 | |
---|---|---|
committer | 2007-06-13 13:52:26 +0000 | |
commit | e7c4842a38ca9e7e90f41d6d00eb57cad37824cb (patch) | |
tree | 42d63a930f35416b8a621ac07e829b93dd733ec4 /usr.bin/ftp/extern.h | |
parent | Remove some statics and inlines (mostly to get a readable profile output). (diff) | |
download | wireguard-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.h | 4 |
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 |