Deleted Added
full compact
servconf.h (149753) servconf.h (157019)
1/* $OpenBSD: servconf.h,v 1.71 2004/12/23 23:11:00 djm Exp $ */
2/* $FreeBSD: head/crypto/openssh/servconf.h 147005 2005-06-05 15:46:09Z des $ */
1/* $OpenBSD: servconf.h,v 1.72 2005/12/06 22:38:27 reyk Exp $ */
2/* $FreeBSD: head/crypto/openssh/servconf.h 157019 2006-03-22 20:41:37Z des $ */
3
4/*
5 * Author: Tatu Ylonen <ylo@cs.hut.fi>
6 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
7 * All rights reserved
8 * Definitions for server configuration data and for the functions reading it.
9 *
10 * As far as I am concerned, the code I have written for this software

--- 118 unchanged lines hidden (view full) ---

129 int client_alive_count_max; /*
130 * If the client is unresponsive
131 * for this many intervals above,
132 * disconnect the session
133 */
134
135 char *authorized_keys_file; /* File containing public keys */
136 char *authorized_keys_file2;
3
4/*
5 * Author: Tatu Ylonen <ylo@cs.hut.fi>
6 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
7 * All rights reserved
8 * Definitions for server configuration data and for the functions reading it.
9 *
10 * As far as I am concerned, the code I have written for this software

--- 118 unchanged lines hidden (view full) ---

129 int client_alive_count_max; /*
130 * If the client is unresponsive
131 * for this many intervals above,
132 * disconnect the session
133 */
134
135 char *authorized_keys_file; /* File containing public keys */
136 char *authorized_keys_file2;
137
137 int use_pam; /* Enable auth via PAM */
138 int use_pam; /* Enable auth via PAM */
139
140 int permit_tun;
138} ServerOptions;
139
140void initialize_server_options(ServerOptions *);
141void fill_default_server_options(ServerOptions *);
142int process_server_config_line(ServerOptions *, char *, const char *, int);
143void load_server_config(const char *, Buffer *);
144void parse_server_config(ServerOptions *, const char *, Buffer *);
145
146#endif /* SERVCONF_H */
141} ServerOptions;
142
143void initialize_server_options(ServerOptions *);
144void fill_default_server_options(ServerOptions *);
145int process_server_config_line(ServerOptions *, char *, const char *, int);
146void load_server_config(const char *, Buffer *);
147void parse_server_config(ServerOptions *, const char *, Buffer *);
148
149#endif /* SERVCONF_H */