summaryrefslogtreecommitdiffstats
path: root/hostfile.h
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2001-07-04 04:02:36 +0000
committerBen Lindstrom <mouring@eviladmin.org>2001-07-04 04:02:36 +0000
commit16ae3d0dba5f81e5602798b915105284033dea75 (patch)
treece0c2bf0d7e961b1015d43d1a07269d81e7a9ce9 /hostfile.h
parent90279d80f57c79ac6566051172a94a2cca9674b1 (diff)
- itojun@cvs.openbsd.org 2001/06/26 06:32:58
[atomicio.h authfd.h authfile.h auth.h auth-options.h bufaux.h buffer.h canohost.h channels.h cipher.h clientloop.h compat.h compress.h crc32.h deattack.h dh.h dispatch.h groupaccess.h hostfile.h kex.h key.h log.h mac.h match.h misc.h mpaux.h packet.h radix.h readconf.h readpass.h rsa.h] prototype pedant. not very creative... - () -> (void) - no variable names
Diffstat (limited to 'hostfile.h')
-rw-r--r--hostfile.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/hostfile.h b/hostfile.h
index 346bcd9b..b83b7700 100644
--- a/hostfile.h
+++ b/hostfile.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: hostfile.h,v 1.7 2001/02/08 19:30:51 itojun Exp $ */
+/* $OpenBSD: hostfile.h,v 1.8 2001/06/26 06:32:53 itojun Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -15,7 +15,7 @@
#define HOSTFILE_H
int
-auth_rsa_read_key(char **cpp, u_int *bitsp, BIGNUM * e, BIGNUM * n);
+auth_rsa_read_key(char **, u_int *, BIGNUM *, BIGNUM *);
/*
* Checks whether the given host is already in the list of our known hosts.
@@ -28,13 +28,12 @@ typedef enum {
} HostStatus;
HostStatus
-check_host_in_hostfile(const char *filename, const char *host, Key *key,
- Key *found, int *line);
+check_host_in_hostfile(const char *, const char *, Key *, Key *, int *);
/*
* Appends an entry to the host file. Returns false if the entry could not
* be appended.
*/
-int add_host_to_hostfile(const char *filename, const char *host, Key *key);
+int add_host_to_hostfile(const char *, const char *, Key *);
#endif