comparison runopts.h @ 684:c37857676924 insecure-nocrypto

Merge in "-m"/"-c" code
author Matt Johnston <matt@ucc.asn.au>
date Thu, 17 May 2012 08:09:19 +0800
parents 4edea9f363d0
children c58a15983808
comparison
equal deleted inserted replaced
681:a4b7627b3157 684:c37857676924
45 * is compiled in, but disabled for a client's non-final multihop stages. (The 45 * is compiled in, but disabled for a client's non-final multihop stages. (The
46 * intermediate stages are compressed streams, so are uncompressible. */ 46 * intermediate stages are compressed streams, so are uncompressible. */
47 int enable_compress; 47 int enable_compress;
48 #endif 48 #endif
49 49
50 #ifdef ENABLE_USER_ALGO_LIST
51 char *cipher_list;
52 char *mac_list;
53 #endif
50 54
51 } runopts; 55 } runopts;
52 56
53 extern runopts opts; 57 extern runopts opts;
54 58
146 } cli_runopts; 150 } cli_runopts;
147 151
148 extern cli_runopts cli_opts; 152 extern cli_runopts cli_opts;
149 void cli_getopts(int argc, char ** argv); 153 void cli_getopts(int argc, char ** argv);
150 154
155 #ifdef ENABLE_USER_ALGO_LIST
156 void parse_ciphers_macs();
157 #endif
158
151 #endif /* _RUNOPTS_H_ */ 159 #endif /* _RUNOPTS_H_ */