|
Lines 2122-2130
fill_default_options(Options * options)
Link Here
|
| 2122 |
defaults, all)) != 0) \ |
2122 |
defaults, all)) != 0) \ |
| 2123 |
fatal("%s: %s: %s", __func__, #what, ssh_err(r)); \ |
2123 |
fatal("%s: %s: %s", __func__, #what, ssh_err(r)); \ |
| 2124 |
} while (0) |
2124 |
} while (0) |
| 2125 |
ASSEMBLE(ciphers, KEX_SERVER_ENCRYPT, all_cipher); |
2125 |
ASSEMBLE(ciphers, KEX_CLIENT_ENCRYPT, all_cipher); |
| 2126 |
ASSEMBLE(macs, KEX_SERVER_MAC, all_mac); |
2126 |
ASSEMBLE(macs, KEX_CLIENT_MAC, all_mac); |
| 2127 |
ASSEMBLE(kex_algorithms, KEX_SERVER_KEX, all_kex); |
2127 |
ASSEMBLE(kex_algorithms, KEX_CLIENT_KEX, all_kex); |
| 2128 |
ASSEMBLE(hostbased_key_types, KEX_DEFAULT_PK_ALG, all_key); |
2128 |
ASSEMBLE(hostbased_key_types, KEX_DEFAULT_PK_ALG, all_key); |
| 2129 |
ASSEMBLE(pubkey_key_types, KEX_DEFAULT_PK_ALG, all_key); |
2129 |
ASSEMBLE(pubkey_key_types, KEX_DEFAULT_PK_ALG, all_key); |
| 2130 |
ASSEMBLE(ca_sign_algorithms, SSH_ALLOWED_CA_SIGALGS, all_sig); |
2130 |
ASSEMBLE(ca_sign_algorithms, SSH_ALLOWED_CA_SIGALGS, all_sig); |
| 2131 |
- |
|
|