|
Lines 95-100
Link Here
|
| 95 |
options->max_startups_rate = -1; |
95 |
options->max_startups_rate = -1; |
| 96 |
options->max_startups = -1; |
96 |
options->max_startups = -1; |
| 97 |
options->banner = NULL; |
97 |
options->banner = NULL; |
|
|
98 |
options->software_version = NULL; |
| 99 |
options->version_comments = NULL; |
| 98 |
options->use_dns = -1; |
100 |
options->use_dns = -1; |
| 99 |
options->client_alive_interval = -1; |
101 |
options->client_alive_interval = -1; |
| 100 |
options->client_alive_count_max = -1; |
102 |
options->client_alive_count_max = -1; |
|
Lines 262-267
Link Here
|
| 262 |
sBanner, sUseDNS, sHostbasedAuthentication, |
264 |
sBanner, sUseDNS, sHostbasedAuthentication, |
| 263 |
sHostbasedUsesNameFromPacketOnly, sClientAliveInterval, |
265 |
sHostbasedUsesNameFromPacketOnly, sClientAliveInterval, |
| 264 |
sClientAliveCountMax, sAuthorizedKeysFile, sAuthorizedKeysFile2, |
266 |
sClientAliveCountMax, sAuthorizedKeysFile, sAuthorizedKeysFile2, |
|
|
267 |
sSoftwareVersion, sVersionComments, |
| 265 |
sGssAuthentication, sGssCleanupCreds, |
268 |
sGssAuthentication, sGssCleanupCreds, |
| 266 |
sUsePrivilegeSeparation, |
269 |
sUsePrivilegeSeparation, |
| 267 |
sDeprecated, sUnsupported |
270 |
sDeprecated, sUnsupported |
|
Lines 347-352
Link Here
|
| 347 |
{ "subsystem", sSubsystem }, |
350 |
{ "subsystem", sSubsystem }, |
| 348 |
{ "maxstartups", sMaxStartups }, |
351 |
{ "maxstartups", sMaxStartups }, |
| 349 |
{ "banner", sBanner }, |
352 |
{ "banner", sBanner }, |
|
|
353 |
{ "softwareversion", sSoftwareVersion}, |
| 354 |
{ "versioncomments", sVersionComments}, |
| 350 |
{ "usedns", sUseDNS }, |
355 |
{ "usedns", sUseDNS }, |
| 351 |
{ "verifyreversemapping", sDeprecated }, |
356 |
{ "verifyreversemapping", sDeprecated }, |
| 352 |
{ "reversemappingcheck", sDeprecated }, |
357 |
{ "reversemappingcheck", sDeprecated }, |
|
Lines 665-670
Link Here
|
| 665 |
intptr = &options->x11_display_offset; |
670 |
intptr = &options->x11_display_offset; |
| 666 |
goto parse_int; |
671 |
goto parse_int; |
| 667 |
|
672 |
|
|
|
673 |
case sSoftwareVersion: |
| 674 |
arg = strdelim(&cp); |
| 675 |
options->software_version = xstrdup(arg); |
| 676 |
break; |
| 677 |
|
| 678 |
case sVersionComments: |
| 679 |
arg = strlineend(&cp); |
| 680 |
options->version_comments = xstrdup(arg); |
| 681 |
break; |
| 682 |
|
| 668 |
case sX11UseLocalhost: |
683 |
case sX11UseLocalhost: |
| 669 |
intptr = &options->x11_use_localhost; |
684 |
intptr = &options->x11_use_localhost; |
| 670 |
goto parse_flag; |
685 |
goto parse_flag; |