Symbol: per_source_penalty
crypto/openssh/servconf.c
172
options->per_source_penalty.enabled = -1;
crypto/openssh/servconf.c
173
options->per_source_penalty.max_sources4 = -1;
crypto/openssh/servconf.c
174
options->per_source_penalty.max_sources6 = -1;
crypto/openssh/servconf.c
175
options->per_source_penalty.overflow_mode = -1;
crypto/openssh/servconf.c
176
options->per_source_penalty.overflow_mode6 = -1;
crypto/openssh/servconf.c
177
options->per_source_penalty.penalty_crash = -1;
crypto/openssh/servconf.c
178
options->per_source_penalty.penalty_authfail = -1;
crypto/openssh/servconf.c
179
options->per_source_penalty.penalty_noauth = -1;
crypto/openssh/servconf.c
180
options->per_source_penalty.penalty_grace = -1;
crypto/openssh/servconf.c
181
options->per_source_penalty.penalty_max = -1;
crypto/openssh/servconf.c
182
options->per_source_penalty.penalty_min = -1;
crypto/openssh/servconf.c
2035
options->per_source_penalty.enabled == -1)
crypto/openssh/servconf.c
2036
options->per_source_penalty.enabled = value2;
crypto/openssh/servconf.c
2040
intptr = &options->per_source_penalty.penalty_crash;
crypto/openssh/servconf.c
2043
intptr = &options->per_source_penalty.penalty_authfail;
crypto/openssh/servconf.c
2046
intptr = &options->per_source_penalty.penalty_noauth;
crypto/openssh/servconf.c
2049
intptr = &options->per_source_penalty.penalty_grace;
crypto/openssh/servconf.c
2052
intptr = &options->per_source_penalty.penalty_max;
crypto/openssh/servconf.c
2055
intptr = &options->per_source_penalty.penalty_min;
crypto/openssh/servconf.c
2057
intptr = &options->per_source_penalty.max_sources4;
crypto/openssh/servconf.c
2062
intptr = &options->per_source_penalty.max_sources6;
crypto/openssh/servconf.c
2067
intptr = &options->per_source_penalty.overflow_mode;
crypto/openssh/servconf.c
2070
intptr = &options->per_source_penalty.overflow_mode;
crypto/openssh/servconf.c
2073
intptr = &options->per_source_penalty.overflow_mode6;
crypto/openssh/servconf.c
2076
intptr = &options->per_source_penalty.overflow_mode6;
crypto/openssh/servconf.c
2090
options->per_source_penalty.enabled = 1;
crypto/openssh/servconf.c
3326
if (o->per_source_penalty.enabled) {
crypto/openssh/servconf.c
3330
o->per_source_penalty.penalty_crash,
crypto/openssh/servconf.c
3331
o->per_source_penalty.penalty_authfail,
crypto/openssh/servconf.c
3332
o->per_source_penalty.penalty_noauth,
crypto/openssh/servconf.c
3333
o->per_source_penalty.penalty_grace,
crypto/openssh/servconf.c
3334
o->per_source_penalty.penalty_max,
crypto/openssh/servconf.c
3335
o->per_source_penalty.penalty_min,
crypto/openssh/servconf.c
3336
o->per_source_penalty.max_sources4,
crypto/openssh/servconf.c
3337
o->per_source_penalty.max_sources6,
crypto/openssh/servconf.c
3338
o->per_source_penalty.overflow_mode ==
crypto/openssh/servconf.c
3341
o->per_source_penalty.overflow_mode6 ==
crypto/openssh/servconf.c
424
if (options->per_source_penalty.enabled == -1)
crypto/openssh/servconf.c
425
options->per_source_penalty.enabled = 1;
crypto/openssh/servconf.c
426
if (options->per_source_penalty.max_sources4 == -1)
crypto/openssh/servconf.c
427
options->per_source_penalty.max_sources4 = 65536;
crypto/openssh/servconf.c
428
if (options->per_source_penalty.max_sources6 == -1)
crypto/openssh/servconf.c
429
options->per_source_penalty.max_sources6 = 65536;
crypto/openssh/servconf.c
430
if (options->per_source_penalty.overflow_mode == -1)
crypto/openssh/servconf.c
431
options->per_source_penalty.overflow_mode = PER_SOURCE_PENALTY_OVERFLOW_PERMISSIVE;
crypto/openssh/servconf.c
432
if (options->per_source_penalty.overflow_mode6 == -1)
crypto/openssh/servconf.c
433
options->per_source_penalty.overflow_mode6 = options->per_source_penalty.overflow_mode;
crypto/openssh/servconf.c
434
if (options->per_source_penalty.penalty_crash == -1)
crypto/openssh/servconf.c
435
options->per_source_penalty.penalty_crash = 90;
crypto/openssh/servconf.c
436
if (options->per_source_penalty.penalty_grace == -1)
crypto/openssh/servconf.c
437
options->per_source_penalty.penalty_grace = 20;
crypto/openssh/servconf.c
438
if (options->per_source_penalty.penalty_authfail == -1)
crypto/openssh/servconf.c
439
options->per_source_penalty.penalty_authfail = 5;
crypto/openssh/servconf.c
440
if (options->per_source_penalty.penalty_noauth == -1)
crypto/openssh/servconf.c
441
options->per_source_penalty.penalty_noauth = 1;
crypto/openssh/servconf.c
442
if (options->per_source_penalty.penalty_min == -1)
crypto/openssh/servconf.c
443
options->per_source_penalty.penalty_min = 15;
crypto/openssh/servconf.c
444
if (options->per_source_penalty.penalty_max == -1)
crypto/openssh/servconf.c
445
options->per_source_penalty.penalty_max = 600;
crypto/openssh/servconf.h
192
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
821
&options.per_source_penalty,