|
Lines 106-112
typedef enum {
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, oHashKnownHosts, |
109 |
oSendEnv, oControlPath, oControlMaster, oControlPersist, oHashKnownHosts, |
| 110 |
oTunnel, oTunnelDevice, oLocalCommand, oPermitLocalCommand, |
110 |
oTunnel, oTunnelDevice, oLocalCommand, oPermitLocalCommand, |
| 111 |
oDeprecated, oUnsupported |
111 |
oDeprecated, oUnsupported |
| 112 |
} OpCodes; |
112 |
} OpCodes; |
|
Lines 197-202
static struct {
Link Here
|
| 197 |
{ "sendenv", oSendEnv }, |
197 |
{ "sendenv", oSendEnv }, |
| 198 |
{ "controlpath", oControlPath }, |
198 |
{ "controlpath", oControlPath }, |
| 199 |
{ "controlmaster", oControlMaster }, |
199 |
{ "controlmaster", oControlMaster }, |
|
|
200 |
{ "controlpersist", oControlPersist }, |
| 200 |
{ "hashknownhosts", oHashKnownHosts }, |
201 |
{ "hashknownhosts", oHashKnownHosts }, |
| 201 |
{ NULL, oBadOption } |
202 |
{ NULL, oBadOption } |
| 202 |
}; |
203 |
}; |
|
Lines 818-823
parse_int:
Link Here
|
| 818 |
*intptr = value; |
819 |
*intptr = value; |
| 819 |
break; |
820 |
break; |
| 820 |
|
821 |
|
|
|
822 |
case oControlPersist: |
| 823 |
intptr = &options->control_persist; |
| 824 |
goto parse_flag; |
| 825 |
|
| 821 |
case oHashKnownHosts: |
826 |
case oHashKnownHosts: |
| 822 |
intptr = &options->hash_known_hosts; |
827 |
intptr = &options->hash_known_hosts; |
| 823 |
goto parse_flag; |
828 |
goto parse_flag; |