Symbol: per_source_penalty
crypto/openssh/servconf.c
173
options->per_source_penalty.enabled = -1;
crypto/openssh/servconf.c
174
options->per_source_penalty.max_sources4 = -1;
crypto/openssh/servconf.c
175
options->per_source_penalty.max_sources6 = -1;
crypto/openssh/servconf.c
176
options->per_source_penalty.overflow_mode = -1;
crypto/openssh/servconf.c
177
options->per_source_penalty.overflow_mode6 = -1;
crypto/openssh/servconf.c
178
options->per_source_penalty.penalty_crash = -1;
crypto/openssh/servconf.c
179
options->per_source_penalty.penalty_authfail = -1;
crypto/openssh/servconf.c
180
options->per_source_penalty.penalty_noauth = -1;
crypto/openssh/servconf.c
181
options->per_source_penalty.penalty_grace = -1;
crypto/openssh/servconf.c
182
options->per_source_penalty.penalty_refuseconnection = -1;
crypto/openssh/servconf.c
183
options->per_source_penalty.penalty_max = -1;
crypto/openssh/servconf.c
184
options->per_source_penalty.penalty_min = -1;
crypto/openssh/servconf.c
2113
options->per_source_penalty.enabled == -1)
crypto/openssh/servconf.c
2114
options->per_source_penalty.enabled = value2;
crypto/openssh/servconf.c
2118
intptr = &options->per_source_penalty.penalty_crash;
crypto/openssh/servconf.c
2121
intptr = &options->per_source_penalty.penalty_authfail;
crypto/openssh/servconf.c
2124
intptr = &options->per_source_penalty.penalty_noauth;
crypto/openssh/servconf.c
2127
intptr = &options->per_source_penalty.penalty_grace;
crypto/openssh/servconf.c
2130
intptr = &options->per_source_penalty.penalty_refuseconnection;
crypto/openssh/servconf.c
2133
intptr = &options->per_source_penalty.penalty_max;
crypto/openssh/servconf.c
2136
intptr = &options->per_source_penalty.penalty_min;
crypto/openssh/servconf.c
2138
intptr = &options->per_source_penalty.max_sources4;
crypto/openssh/servconf.c
2143
intptr = &options->per_source_penalty.max_sources6;
crypto/openssh/servconf.c
2148
intptr = &options->per_source_penalty.overflow_mode;
crypto/openssh/servconf.c
2151
intptr = &options->per_source_penalty.overflow_mode;
crypto/openssh/servconf.c
2154
intptr = &options->per_source_penalty.overflow_mode6;
crypto/openssh/servconf.c
2157
intptr = &options->per_source_penalty.overflow_mode6;
crypto/openssh/servconf.c
2171
options->per_source_penalty.enabled = 1;
crypto/openssh/servconf.c
3422
if (o->per_source_penalty.enabled) {
crypto/openssh/servconf.c
3427
o->per_source_penalty.penalty_crash,
crypto/openssh/servconf.c
3428
o->per_source_penalty.penalty_authfail,
crypto/openssh/servconf.c
3429
o->per_source_penalty.penalty_noauth,
crypto/openssh/servconf.c
3430
o->per_source_penalty.penalty_grace,
crypto/openssh/servconf.c
3431
o->per_source_penalty.penalty_refuseconnection,
crypto/openssh/servconf.c
3432
o->per_source_penalty.penalty_max,
crypto/openssh/servconf.c
3433
o->per_source_penalty.penalty_min,
crypto/openssh/servconf.c
3434
o->per_source_penalty.max_sources4,
crypto/openssh/servconf.c
3435
o->per_source_penalty.max_sources6,
crypto/openssh/servconf.c
3436
o->per_source_penalty.overflow_mode ==
crypto/openssh/servconf.c
3439
o->per_source_penalty.overflow_mode6 ==
crypto/openssh/servconf.c
435
if (options->per_source_penalty.enabled == -1)
crypto/openssh/servconf.c
436
options->per_source_penalty.enabled = 1;
crypto/openssh/servconf.c
437
if (options->per_source_penalty.max_sources4 == -1)
crypto/openssh/servconf.c
438
options->per_source_penalty.max_sources4 = 65536;
crypto/openssh/servconf.c
439
if (options->per_source_penalty.max_sources6 == -1)
crypto/openssh/servconf.c
440
options->per_source_penalty.max_sources6 = 65536;
crypto/openssh/servconf.c
441
if (options->per_source_penalty.overflow_mode == -1)
crypto/openssh/servconf.c
442
options->per_source_penalty.overflow_mode = PER_SOURCE_PENALTY_OVERFLOW_PERMISSIVE;
crypto/openssh/servconf.c
443
if (options->per_source_penalty.overflow_mode6 == -1)
crypto/openssh/servconf.c
444
options->per_source_penalty.overflow_mode6 = options->per_source_penalty.overflow_mode;
crypto/openssh/servconf.c
445
if (options->per_source_penalty.penalty_crash == -1)
crypto/openssh/servconf.c
446
options->per_source_penalty.penalty_crash = 90;
crypto/openssh/servconf.c
447
if (options->per_source_penalty.penalty_grace == -1)
crypto/openssh/servconf.c
448
options->per_source_penalty.penalty_grace = 10;
crypto/openssh/servconf.c
449
if (options->per_source_penalty.penalty_authfail == -1)
crypto/openssh/servconf.c
450
options->per_source_penalty.penalty_authfail = 5;
crypto/openssh/servconf.c
451
if (options->per_source_penalty.penalty_noauth == -1)
crypto/openssh/servconf.c
452
options->per_source_penalty.penalty_noauth = 1;
crypto/openssh/servconf.c
453
if (options->per_source_penalty.penalty_refuseconnection == -1)
crypto/openssh/servconf.c
454
options->per_source_penalty.penalty_refuseconnection = 10;
crypto/openssh/servconf.c
455
if (options->per_source_penalty.penalty_min == -1)
crypto/openssh/servconf.c
456
options->per_source_penalty.penalty_min = 15;
crypto/openssh/servconf.c
457
if (options->per_source_penalty.penalty_max == -1)
crypto/openssh/servconf.c
458
options->per_source_penalty.penalty_max = 600;
crypto/openssh/servconf.h
193
struct per_source_penalty per_source_penalty;
crypto/openssh/srclimit.c
100
struct per_source_penalty *penalty_conf, const char *penalty_exempt_conf)
crypto/openssh/srclimit.c
40
static struct per_source_penalty penalty_cfg;
crypto/openssh/srclimit.h
18
struct per_source_penalty;
crypto/openssh/srclimit.h
21
struct per_source_penalty *, const char *);
crypto/openssh/sshd.c
912
&options.per_source_penalty,