Mercurial > dropbear
comparison runopts.h @ 551:c3f2ec71e3d4 agent-client
New standard linked list to use, rather than adhoc SignKeyList or TCPFwdList
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Mon, 06 Jul 2009 12:59:13 +0000 |
parents | 568638be7203 |
children | de3653483ac0 |
comparison
equal
deleted
inserted
replaced
550:61c3513825b0 | 551:c3f2ec71e3d4 |
---|---|
110 int always_accept_key; | 110 int always_accept_key; |
111 int no_cmd; | 111 int no_cmd; |
112 int backgrounded; | 112 int backgrounded; |
113 int is_subsystem; | 113 int is_subsystem; |
114 #ifdef ENABLE_CLI_PUBKEY_AUTH | 114 #ifdef ENABLE_CLI_PUBKEY_AUTH |
115 struct SignKeyList *privkeys; /* Keys to use for public-key auth */ | 115 m_list *privkeys; /* Keys to use for public-key auth */ |
116 #endif | 116 #endif |
117 #ifdef ENABLE_CLI_REMOTETCPFWD | 117 #ifdef ENABLE_CLI_REMOTETCPFWD |
118 struct TCPFwdList * remotefwds; | 118 m_list * remotefwds; |
119 #endif | 119 #endif |
120 #ifdef ENABLE_CLI_LOCALTCPFWD | 120 #ifdef ENABLE_CLI_LOCALTCPFWD |
121 struct TCPFwdList * localfwds; | 121 m_list * localfwds; |
122 #endif | 122 #endif |
123 #ifdef ENABLE_CLI_AGENTFWD | 123 #ifdef ENABLE_CLI_AGENTFWD |
124 int agent_fwd; | 124 int agent_fwd; |
125 int agent_keys_loaded; /* whether pubkeys has been populated with a | 125 int agent_keys_loaded; /* whether pubkeys has been populated with a |
126 list of keys held by the agent */ | 126 list of keys held by the agent */ |