servconf.h (f9421853ade4550bd7c0b5956ba7324b8b9676a5) | servconf.h (b2af61ec69826890d075ceb3e20e206be20d6fea) |
---|---|
1/* $OpenBSD: servconf.h,v 1.120 2015/07/10 06:21:53 markus Exp $ */ 2 3/* 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 * Definitions for server configuration data and for the functions reading it. 8 * --- 181 unchanged lines hidden (view full) --- 190 int rekey_interval; 191 192 char *version_addendum; /* Appended to SSH banner */ 193 194 u_int num_auth_methods; 195 char *auth_methods[MAX_AUTH_METHODS]; 196 197 int fingerprint_hash; | 1/* $OpenBSD: servconf.h,v 1.120 2015/07/10 06:21:53 markus Exp $ */ 2 3/* 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 * Definitions for server configuration data and for the functions reading it. 8 * --- 181 unchanged lines hidden (view full) --- 190 int rekey_interval; 191 192 char *version_addendum; /* Appended to SSH banner */ 193 194 u_int num_auth_methods; 195 char *auth_methods[MAX_AUTH_METHODS]; 196 197 int fingerprint_hash; |
198 int use_blacklist; |
|
198} ServerOptions; 199 200/* Information about the incoming connection as used by Match */ 201struct connection_info { 202 const char *user; 203 const char *host; /* possibly resolved hostname */ 204 const char *address; /* remote address */ 205 const char *laddress; /* local address */ --- 49 unchanged lines hidden --- | 199} ServerOptions; 200 201/* Information about the incoming connection as used by Match */ 202struct connection_info { 203 const char *user; 204 const char *host; /* possibly resolved hostname */ 205 const char *address; /* remote address */ 206 const char *laddress; /* local address */ --- 49 unchanged lines hidden --- |