|
Lines 106-112
Link Here
|
| 106 |
oEnableSSHKeysign, oRekeyLimit, oVerifyHostKeyDNS, oConnectTimeout, |
106 |
oEnableSSHKeysign, oRekeyLimit, oVerifyHostKeyDNS, oConnectTimeout, |
| 107 |
oAddressFamily, oGssAuthentication, oGssDelegateCreds, |
107 |
oAddressFamily, oGssAuthentication, oGssDelegateCreds, |
| 108 |
oServerAliveInterval, oServerAliveCountMax, oIdentitiesOnly, |
108 |
oServerAliveInterval, oServerAliveCountMax, oIdentitiesOnly, |
| 109 |
oSendEnv, oControlPath, oControlMaster, |
109 |
oSendEnv, oControlPath, oControlMaster, oTCPFallback, |
| 110 |
oDeprecated, oUnsupported |
110 |
oDeprecated, oUnsupported |
| 111 |
} OpCodes; |
111 |
} OpCodes; |
| 112 |
|
112 |
|
|
Lines 197-202
Link Here
|
| 197 |
{ "sendenv", oSendEnv }, |
197 |
{ "sendenv", oSendEnv }, |
| 198 |
{ "controlpath", oControlPath }, |
198 |
{ "controlpath", oControlPath }, |
| 199 |
{ "controlmaster", oControlMaster }, |
199 |
{ "controlmaster", oControlMaster }, |
|
|
200 |
{ "tcpfallback", oTCPFallback }, |
| 200 |
{ NULL, oBadOption } |
201 |
{ NULL, oBadOption } |
| 201 |
}; |
202 |
}; |
| 202 |
|
203 |
|
|
Lines 772-777
Link Here
|
| 772 |
intptr = &options->control_master; |
773 |
intptr = &options->control_master; |
| 773 |
goto parse_yesnoask; |
774 |
goto parse_yesnoask; |
| 774 |
|
775 |
|
|
|
776 |
case oTCPFallback: |
| 777 |
intptr = &options->tcp_fallback; |
| 778 |
goto parse_flag; |
| 779 |
|
| 775 |
case oDeprecated: |
780 |
case oDeprecated: |
| 776 |
debug("%s line %d: Deprecated option \"%s\"", |
781 |
debug("%s line %d: Deprecated option \"%s\"", |
| 777 |
filename, linenum, keyword); |
782 |
filename, linenum, keyword); |
|
Lines 915-920
Link Here
|
| 915 |
options->num_send_env = 0; |
920 |
options->num_send_env = 0; |
| 916 |
options->control_path = NULL; |
921 |
options->control_path = NULL; |
| 917 |
options->control_master = -1; |
922 |
options->control_master = -1; |
|
|
923 |
options->tcp_fallback = -1; |
| 918 |
} |
924 |
} |
| 919 |
|
925 |
|
| 920 |
/* |
926 |
/* |
|
Lines 1037-1042
Link Here
|
| 1037 |
options->server_alive_count_max = 3; |
1043 |
options->server_alive_count_max = 3; |
| 1038 |
if (options->control_master == -1) |
1044 |
if (options->control_master == -1) |
| 1039 |
options->control_master = 0; |
1045 |
options->control_master = 0; |
|
|
1046 |
if (options->tcp_fallback == -1) |
| 1047 |
options->tcp_fallback = 0; |
| 1040 |
/* options->proxy_command should not be set by default */ |
1048 |
/* options->proxy_command should not be set by default */ |
| 1041 |
/* options->user will be set in the main program if appropriate */ |
1049 |
/* options->user will be set in the main program if appropriate */ |
| 1042 |
/* options->hostname will be set in the main program if appropriate */ |
1050 |
/* options->hostname will be set in the main program if appropriate */ |