Mercurial > dropbear
comparison runopts.h @ 1478:3a933956437e coverity
update coverity
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Fri, 09 Feb 2018 23:49:22 +0800 |
parents | f787f60f8e45 |
children | 2d450c1056e3 |
comparison
equal
deleted
inserted
replaced
1439:8d24733026c5 | 1478:3a933956437e |
---|---|
94 int norootlogin; | 94 int norootlogin; |
95 | 95 |
96 int noauthpass; | 96 int noauthpass; |
97 int norootpass; | 97 int norootpass; |
98 int allowblankpass; | 98 int allowblankpass; |
99 unsigned int maxauthtries; | |
99 | 100 |
100 #if DROPBEAR_SVR_REMOTETCPFWD | 101 #if DROPBEAR_SVR_REMOTETCPFWD |
101 int noremotetcp; | 102 int noremotetcp; |
102 #endif | 103 #endif |
103 #if DROPBEAR_SVR_LOCALTCPFWD | 104 #if DROPBEAR_SVR_LOCALTCPFWD |
164 unsigned int netcat_port; | 165 unsigned int netcat_port; |
165 #endif | 166 #endif |
166 #if DROPBEAR_CLI_PROXYCMD | 167 #if DROPBEAR_CLI_PROXYCMD |
167 char *proxycmd; | 168 char *proxycmd; |
168 #endif | 169 #endif |
170 char *bind_address; | |
171 char *bind_port; | |
169 } cli_runopts; | 172 } cli_runopts; |
170 | 173 |
171 extern cli_runopts cli_opts; | 174 extern cli_runopts cli_opts; |
172 void cli_getopts(int argc, char ** argv); | 175 void cli_getopts(int argc, char ** argv); |
173 | 176 |