]> andersk Git - openssh.git/blame - servconf.h
- OpenBSD CVS updates:
[openssh.git] / servconf.h
CommitLineData
8efc0c15 1/*
5260325f 2 *
3 * servconf.h
4 *
5 * Author: Tatu Ylonen <ylo@cs.hut.fi>
6 *
7 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
8 * All rights reserved
9 *
10 * Created: Mon Aug 21 15:35:03 1995 ylo
11 *
12 * Definitions for server configuration data and for the functions reading it.
13 *
14 */
8efc0c15 15
16/* RCSID("$Id$"); */
17
18#ifndef SERVCONF_H
19#define SERVCONF_H
20
48e671d5 21#define MAX_PORTS 256 /* Max # ports. */
22
5260325f 23#define MAX_ALLOW_USERS 256 /* Max # users on allow list. */
24#define MAX_DENY_USERS 256 /* Max # users on deny list. */
25#define MAX_ALLOW_GROUPS 256 /* Max # groups on allow list. */
26#define MAX_DENY_GROUPS 256 /* Max # groups on deny list. */
8efc0c15 27
5260325f 28typedef struct {
48e671d5 29 unsigned int num_ports;
30 unsigned int ports_from_cmdline;
31 u_short ports[MAX_PORTS]; /* Port number to listen on. */
32 char *listen_addr; /* Address on which the server listens. */
33 struct addrinfo *listen_addrs; /* Addresses on which the server listens. */
5260325f 34 char *host_key_file; /* File containing host key. */
35 int server_key_bits;/* Size of the server key. */
36 int login_grace_time; /* Disconnect if no auth in this time
37 * (sec). */
38 int key_regeneration_time; /* Server key lifetime (seconds). */
39 int permit_root_login; /* If true, permit root login. */
40 int ignore_rhosts; /* Ignore .rhosts and .shosts. */
41 int ignore_user_known_hosts; /* Ignore ~/.ssh/known_hosts
42 * for RhostsRsaAuth */
43 int print_motd; /* If true, print /etc/motd. */
44 int check_mail; /* If true, check for new mail. */
45 int x11_forwarding; /* If true, permit inet (spoofing) X11 fwd. */
46 int x11_display_offset; /* What DISPLAY number to start
47 * searching at */
48 int strict_modes; /* If true, require string home dir modes. */
49 int keepalives; /* If true, set SO_KEEPALIVE. */
50 SyslogFacility log_facility; /* Facility for system logging. */
51 LogLevel log_level; /* Level for system logging. */
52 int rhosts_authentication; /* If true, permit rhosts
53 * authentication. */
54 int rhosts_rsa_authentication; /* If true, permit rhosts RSA
55 * authentication. */
56 int rsa_authentication; /* If true, permit RSA authentication. */
8efc0c15 57#ifdef KRB4
5260325f 58 int kerberos_authentication; /* If true, permit Kerberos
59 * authentication. */
60 int kerberos_or_local_passwd; /* If true, permit kerberos
61 * and any other password
62 * authentication mechanism,
63 * such as SecurID or
64 * /etc/passwd */
65 int kerberos_ticket_cleanup; /* If true, destroy ticket
66 * file on logout. */
8efc0c15 67#endif
68#ifdef AFS
5260325f 69 int kerberos_tgt_passing; /* If true, permit Kerberos tgt
70 * passing. */
71 int afs_token_passing; /* If true, permit AFS token passing. */
8efc0c15 72#endif
5260325f 73 int password_authentication; /* If true, permit password
74 * authentication. */
8efc0c15 75#ifdef SKEY
5260325f 76 int skey_authentication; /* If true, permit s/key
77 * authentication. */
8efc0c15 78#endif
5260325f 79 int permit_empty_passwd; /* If false, do not permit empty
80 * passwords. */
81 int use_login; /* If true, login(1) is used */
82 unsigned int num_allow_users;
83 char *allow_users[MAX_ALLOW_USERS];
84 unsigned int num_deny_users;
85 char *deny_users[MAX_DENY_USERS];
86 unsigned int num_allow_groups;
87 char *allow_groups[MAX_ALLOW_GROUPS];
88 unsigned int num_deny_groups;
89 char *deny_groups[MAX_DENY_GROUPS];
90} ServerOptions;
aa3378df 91/*
92 * Initializes the server options to special values that indicate that they
93 * have not yet been set.
94 */
5260325f 95void initialize_server_options(ServerOptions * options);
8efc0c15 96
aa3378df 97/*
98 * Reads the server configuration file. This only sets the values for those
99 * options that have the special value indicating they have not been set.
100 */
5260325f 101void read_server_config(ServerOptions * options, const char *filename);
8efc0c15 102
103/* Sets values for those values that have not yet been set. */
5260325f 104void fill_default_server_options(ServerOptions * options);
8efc0c15 105
5260325f 106#endif /* SERVCONF_H */
This page took 0.08226 seconds and 5 git commands to generate.