Deleted Added
full compact
1,2c1,2
< /* $OpenBSD: servconf.h,v 1.67 2003/12/23 16:12:10 jakob Exp $ */
< /* $FreeBSD: head/crypto/openssh/servconf.h 126277 2004-02-26 10:52:33Z des $ */
---
> /* $OpenBSD: servconf.h,v 1.70 2004/06/24 19:30:54 djm Exp $ */
> /* $FreeBSD: head/crypto/openssh/servconf.h 137019 2004-10-28 16:11:31Z des $ */
19a20,21
> #include "buffer.h"
>
27a30
> #define MAX_ACCEPT_ENV 256 /* Max # of env vars. */
35a39
> #define DEFAULT_AUTH_FAIL_MAX 6 /* Default for MaxAuthTries */
110a115,117
> u_int num_accept_env;
> char *accept_env[MAX_ACCEPT_ENV];
>
113a121
> int max_authtries;
132d139
< void read_server_config(ServerOptions *, const char *);
134a142,143
> void load_server_config(const char *, Buffer *);
> void parse_server_config(ServerOptions *, const char *, Buffer *);
136d144
<