diff options
Diffstat (limited to 'servconf.h')
-rw-r--r-- | servconf.h | 25 |
1 files changed, 21 insertions, 4 deletions
diff --git a/servconf.h b/servconf.h index 1ff3bc5a1..3d0a0653f 100644 --- a/servconf.h +++ b/servconf.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: servconf.h,v 1.127 2017/10/05 15:52:03 djm Exp $ */ | 1 | /* $OpenBSD: servconf.h,v 1.128 2017/10/25 00:15:35 djm Exp $ */ |
2 | 2 | ||
3 | /* | 3 | /* |
4 | * Author: Tatu Ylonen <ylo@cs.hut.fi> | 4 | * Author: Tatu Ylonen <ylo@cs.hut.fi> |
@@ -51,14 +51,31 @@ | |||
51 | struct ssh; | 51 | struct ssh; |
52 | struct fwd_perm_list; | 52 | struct fwd_perm_list; |
53 | 53 | ||
54 | /* | ||
55 | * Used to store addresses from ListenAddr directives. These may be | ||
56 | * incomplete, as they may specify addresses that need to be merged | ||
57 | * with any ports requested by ListenPort. | ||
58 | */ | ||
59 | struct queued_listenaddr { | ||
60 | char *addr; | ||
61 | int port; /* <=0 if unspecified */ | ||
62 | char *rdomain; | ||
63 | }; | ||
64 | |||
65 | /* Resolved listen addresses, grouped by optional routing domain */ | ||
66 | struct listenaddr { | ||
67 | char *rdomain; | ||
68 | struct addrinfo *addrs; | ||
69 | }; | ||
70 | |||
54 | typedef struct { | 71 | typedef struct { |
55 | u_int num_ports; | 72 | u_int num_ports; |
56 | u_int ports_from_cmdline; | 73 | u_int ports_from_cmdline; |
57 | int ports[MAX_PORTS]; /* Port number to listen on. */ | 74 | int ports[MAX_PORTS]; /* Port number to listen on. */ |
75 | struct queued_listenaddr *queued_listen_addrs; | ||
58 | u_int num_queued_listens; | 76 | u_int num_queued_listens; |
59 | char **queued_listen_addrs; | 77 | struct listenaddr *listen_addrs; |
60 | int *queued_listen_ports; | 78 | u_int num_listen_addrs; |
61 | struct addrinfo *listen_addrs; /* Addresses for server to listen. */ | ||
62 | int address_family; /* Address family used by the server. */ | 79 | int address_family; /* Address family used by the server. */ |
63 | 80 | ||
64 | char **host_key_files; /* Files containing host keys. */ | 81 | char **host_key_files; /* Files containing host keys. */ |