comparison runopts.h @ 1511:5916af64acd4 fuzz

merge from main
author Matt Johnston <matt@ucc.asn.au>
date Sat, 17 Feb 2018 19:29:51 +0800
parents 4afde04f0607 2d450c1056e3
children bb8eaa26bc93
comparison
equal deleted inserted replaced
1457:32f990cc96b1 1511:5916af64acd4
84 /* not used yet 84 /* not used yet
85 int ipv4; 85 int ipv4;
86 int ipv6; 86 int ipv6;
87 */ 87 */
88 88
89 #ifdef DO_MOTD 89 #if DO_MOTD
90 /* whether to print the MOTD */ 90 /* whether to print the MOTD */
91 int domotd; 91 int domotd;
92 #endif 92 #endif
93 93
94 int norootlogin; 94 int norootlogin;
165 unsigned int netcat_port; 165 unsigned int netcat_port;
166 #endif 166 #endif
167 #if DROPBEAR_CLI_PROXYCMD 167 #if DROPBEAR_CLI_PROXYCMD
168 char *proxycmd; 168 char *proxycmd;
169 #endif 169 #endif
170 char *bind_address;
171 char *bind_port;
170 } cli_runopts; 172 } cli_runopts;
171 173
172 extern cli_runopts cli_opts; 174 extern cli_runopts cli_opts;
173 void cli_getopts(int argc, char ** argv); 175 void cli_getopts(int argc, char ** argv);
174 176