blob: e3d1165818cbc236710ad6104b44ce1f7f723c58 [file] [log] [blame]
Ben Lindstrom93576d92002-12-23 02:06:19 +00001/* $OpenBSD: hostfile.h,v 1.13 2002/11/21 23:03:51 deraadt Exp $ */
Ben Lindstrom36579d32001-01-29 07:39:26 +00002
Damien Millere4340be2000-09-16 13:29:08 +11003/*
4 * Author: Tatu Ylonen <ylo@cs.hut.fi>
5 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
6 * All rights reserved
7 *
8 * As far as I am concerned, the code I have written for this software
9 * can be used freely for any purpose. Any derived versions of this
10 * software must be clearly marked as such, and if the derived work is
11 * incompatible with the protocol description in the RFC file, it must be
12 * called by a name other than "ssh" or "Secure Shell".
13 */
Damien Miller450a7a12000-03-26 13:04:51 +100014#ifndef HOSTFILE_H
15#define HOSTFILE_H
16
Damien Miller450a7a12000-03-26 13:04:51 +100017typedef enum {
Damien Miller4d53d392002-09-12 09:43:56 +100018 HOST_OK, HOST_NEW, HOST_CHANGED, HOST_FOUND
Damien Miller450a7a12000-03-26 13:04:51 +100019} HostStatus;
Ben Lindstrom46c16222000-12-22 01:43:59 +000020
Damien Miller5b2aea92001-12-21 12:47:09 +110021int hostfile_read_key(char **, u_int *, Key *);
Ben Lindstrom93576d92002-12-23 02:06:19 +000022HostStatus check_host_in_hostfile(const char *, const char *,
23 Key *, Key *, int *);
24int add_host_to_hostfile(const char *, const char *, Key *);
25int lookup_key_in_hostfile_by_type(const char *, const char *,
26 int, Key *, int *);
Damien Miller450a7a12000-03-26 13:04:51 +100027
28#endif