|
Lines 132-138
Link Here
|
| 132 |
oTunnel, oTunnelDevice, oLocalCommand, oPermitLocalCommand, |
132 |
oTunnel, oTunnelDevice, oLocalCommand, oPermitLocalCommand, |
| 133 |
oVisualHostKey, oUseRoaming, oZeroKnowledgePasswordAuthentication, |
133 |
oVisualHostKey, oUseRoaming, oZeroKnowledgePasswordAuthentication, |
| 134 |
oKexAlgorithms, oIPQoS, oRequestTTY, |
134 |
oKexAlgorithms, oIPQoS, oRequestTTY, |
| 135 |
oDeprecated, oUnsupported |
135 |
oDeprecated, oUnsupported, |
|
|
136 |
oSkipBanner |
| 136 |
} OpCodes; |
137 |
} OpCodes; |
| 137 |
|
138 |
|
| 138 |
/* Textual representations of the tokens. */ |
139 |
/* Textual representations of the tokens. */ |
|
Lines 243-248
Link Here
|
| 243 |
{ "kexalgorithms", oKexAlgorithms }, |
244 |
{ "kexalgorithms", oKexAlgorithms }, |
| 244 |
{ "ipqos", oIPQoS }, |
245 |
{ "ipqos", oIPQoS }, |
| 245 |
{ "requesttty", oRequestTTY }, |
246 |
{ "requesttty", oRequestTTY }, |
|
|
247 |
{ "skipbanner", oSkipBanner }, |
| 246 |
|
248 |
|
| 247 |
{ NULL, oBadOption } |
249 |
{ NULL, oBadOption } |
| 248 |
}; |
250 |
}; |
|
Lines 1040-1045
Link Here
|
| 1040 |
*intptr = value; |
1042 |
*intptr = value; |
| 1041 |
break; |
1043 |
break; |
| 1042 |
|
1044 |
|
|
|
1045 |
case oSkipBanner: |
| 1046 |
intptr = &options->skip_banner; |
| 1047 |
goto parse_flag; |
| 1048 |
|
| 1043 |
case oDeprecated: |
1049 |
case oDeprecated: |
| 1044 |
debug("%s line %d: Deprecated option \"%s\"", |
1050 |
debug("%s line %d: Deprecated option \"%s\"", |
| 1045 |
filename, linenum, keyword); |
1051 |
filename, linenum, keyword); |
|
Lines 1199-1204
Link Here
|
| 1199 |
options->ip_qos_interactive = -1; |
1205 |
options->ip_qos_interactive = -1; |
| 1200 |
options->ip_qos_bulk = -1; |
1206 |
options->ip_qos_bulk = -1; |
| 1201 |
options->request_tty = -1; |
1207 |
options->request_tty = -1; |
|
|
1208 |
options->skip_banner = -1; |
| 1202 |
} |
1209 |
} |
| 1203 |
|
1210 |
|
| 1204 |
/* |
1211 |
/* |
|
Lines 1368-1373
Link Here
|
| 1368 |
/* options->hostname will be set in the main program if appropriate */ |
1375 |
/* options->hostname will be set in the main program if appropriate */ |
| 1369 |
/* options->host_key_alias should not be set by default */ |
1376 |
/* options->host_key_alias should not be set by default */ |
| 1370 |
/* options->preferred_authentications will be set in ssh */ |
1377 |
/* options->preferred_authentications will be set in ssh */ |
|
|
1378 |
if (options->skip_banner == -1) |
| 1379 |
options->skip_banner = 0; |
| 1371 |
} |
1380 |
} |
| 1372 |
|
1381 |
|
| 1373 |
/* |
1382 |
/* |