Symbol: per_source_penalty
crypto/openssh/servconf.c
141
options->per_source_penalty.enabled = -1; \
crypto/openssh/servconf.c
142
options->per_source_penalty.max_sources4 = -1; \
crypto/openssh/servconf.c
143
options->per_source_penalty.max_sources6 = -1; \
crypto/openssh/servconf.c
144
options->per_source_penalty.overflow_mode = -1; \
crypto/openssh/servconf.c
145
options->per_source_penalty.overflow_mode6 = -1; \
crypto/openssh/servconf.c
146
options->per_source_penalty.penalty_crash = -1.0; \
crypto/openssh/servconf.c
147
options->per_source_penalty.penalty_authfail = -1.0; \
crypto/openssh/servconf.c
148
options->per_source_penalty.penalty_invaliduser = -1.0; \
crypto/openssh/servconf.c
149
options->per_source_penalty.penalty_noauth = -1.0; \
crypto/openssh/servconf.c
150
options->per_source_penalty.penalty_grace = -1.0; \
crypto/openssh/servconf.c
151
options->per_source_penalty.penalty_refuseconnection = -1.0; \
crypto/openssh/servconf.c
152
options->per_source_penalty.penalty_max = -1.0; \
crypto/openssh/servconf.c
153
options->per_source_penalty.penalty_min = -1.0;
crypto/openssh/servconf.c
1904
options->per_source_penalty.enabled == -1)
crypto/openssh/servconf.c
1905
options->per_source_penalty.enabled = value2;
crypto/openssh/servconf.c
1908
doubleptr = &options->per_source_penalty.penalty_crash;
crypto/openssh/servconf.c
1910
doubleptr = &options->per_source_penalty.penalty_authfail;
crypto/openssh/servconf.c
1912
doubleptr = &options->per_source_penalty.penalty_invaliduser;
crypto/openssh/servconf.c
1914
doubleptr = &options->per_source_penalty.penalty_noauth;
crypto/openssh/servconf.c
1916
doubleptr = &options->per_source_penalty.penalty_grace;
crypto/openssh/servconf.c
1918
doubleptr = &options->per_source_penalty.penalty_refuseconnection;
crypto/openssh/servconf.c
1920
doubleptr = &options->per_source_penalty.penalty_max;
crypto/openssh/servconf.c
1922
doubleptr = &options->per_source_penalty.penalty_min;
crypto/openssh/servconf.c
1924
intptr = &options->per_source_penalty.max_sources4;
crypto/openssh/servconf.c
1929
intptr = &options->per_source_penalty.max_sources6;
crypto/openssh/servconf.c
1934
intptr = &options->per_source_penalty.overflow_mode;
crypto/openssh/servconf.c
1937
intptr = &options->per_source_penalty.overflow_mode;
crypto/openssh/servconf.c
1940
intptr = &options->per_source_penalty.overflow_mode6;
crypto/openssh/servconf.c
1943
intptr = &options->per_source_penalty.overflow_mode6;
crypto/openssh/servconf.c
1957
options->per_source_penalty.enabled = 1;
crypto/openssh/servconf.c
1962
options->per_source_penalty.enabled = 1;
crypto/openssh/servconf.c
3006
const struct per_source_penalty *psp = &options->per_source_penalty;
crypto/openssh/servconf.c
3531
struct per_source_penalty *psp = &options->per_source_penalty;
crypto/openssh/servconf.c
368
if (options->per_source_penalty.enabled == -1)
crypto/openssh/servconf.c
369
options->per_source_penalty.enabled = 1;
crypto/openssh/servconf.c
370
if (options->per_source_penalty.max_sources4 == -1)
crypto/openssh/servconf.c
371
options->per_source_penalty.max_sources4 = 65536;
crypto/openssh/servconf.c
372
if (options->per_source_penalty.max_sources6 == -1)
crypto/openssh/servconf.c
373
options->per_source_penalty.max_sources6 = 65536;
crypto/openssh/servconf.c
374
if (options->per_source_penalty.overflow_mode == -1)
crypto/openssh/servconf.c
375
options->per_source_penalty.overflow_mode = PER_SOURCE_PENALTY_OVERFLOW_PERMISSIVE;
crypto/openssh/servconf.c
376
if (options->per_source_penalty.overflow_mode6 == -1)
crypto/openssh/servconf.c
377
options->per_source_penalty.overflow_mode6 = options->per_source_penalty.overflow_mode;
crypto/openssh/servconf.c
378
if (options->per_source_penalty.penalty_crash < 0.0)
crypto/openssh/servconf.c
379
options->per_source_penalty.penalty_crash = 90.0;
crypto/openssh/servconf.c
380
if (options->per_source_penalty.penalty_grace < 0.0)
crypto/openssh/servconf.c
381
options->per_source_penalty.penalty_grace = 10.0;
crypto/openssh/servconf.c
382
if (options->per_source_penalty.penalty_authfail < 0.0)
crypto/openssh/servconf.c
383
options->per_source_penalty.penalty_authfail = 5.0;
crypto/openssh/servconf.c
384
if (options->per_source_penalty.penalty_invaliduser < 0.0)
crypto/openssh/servconf.c
385
options->per_source_penalty.penalty_invaliduser = 5.0;
crypto/openssh/servconf.c
386
if (options->per_source_penalty.penalty_noauth < 0.0)
crypto/openssh/servconf.c
387
options->per_source_penalty.penalty_noauth = 1.0;
crypto/openssh/servconf.c
388
if (options->per_source_penalty.penalty_refuseconnection < 0.0)
crypto/openssh/servconf.c
389
options->per_source_penalty.penalty_refuseconnection = 10.0;
crypto/openssh/servconf.c
390
if (options->per_source_penalty.penalty_min < 0.0)
crypto/openssh/servconf.c
391
options->per_source_penalty.penalty_min = 15.0;
crypto/openssh/servconf.c
392
if (options->per_source_penalty.penalty_max < 0.0)
crypto/openssh/servconf.c
393
options->per_source_penalty.penalty_max = 600.0;
crypto/openssh/servconf.c
4382
if (o->per_source_penalty.enabled) {
crypto/openssh/servconf.c
4388
o->per_source_penalty.penalty_crash,
crypto/openssh/servconf.c
4389
o->per_source_penalty.penalty_authfail,
crypto/openssh/servconf.c
4390
o->per_source_penalty.penalty_noauth,
crypto/openssh/servconf.c
4391
o->per_source_penalty.penalty_invaliduser,
crypto/openssh/servconf.c
4392
o->per_source_penalty.penalty_grace,
crypto/openssh/servconf.c
4393
o->per_source_penalty.penalty_refuseconnection,
crypto/openssh/servconf.c
4394
o->per_source_penalty.penalty_max,
crypto/openssh/servconf.c
4395
o->per_source_penalty.penalty_min,
crypto/openssh/servconf.c
4396
o->per_source_penalty.max_sources4,
crypto/openssh/servconf.c
4397
o->per_source_penalty.max_sources6,
crypto/openssh/servconf.c
4398
o->per_source_penalty.overflow_mode ==
crypto/openssh/servconf.c
4401
o->per_source_penalty.overflow_mode6 ==
crypto/openssh/servconf.h
390
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
910
&options.per_source_penalty,