{"key", 'k', "FILE", 0, "Server key", 2},
{"cert", 'c', "FILE", 0, "Server certificate", 2},
{"ca", 'z', "FILE", 0, "CA certificate", 2},
- {"anon", 'a', NULL, 0, "Enable anonymous authentication (don't use a certificate)", 2},
+ {"anon", 'a', NULL, 0, "Enable anonymous authentication (no certificates)", 2},
{"verify", 'v', "LEVEL", OPTION_ARG_OPTIONAL,
"Verify clients certificate (1: verify if exists, 2: require)", 2},
{NULL, 0, NULL, 0, "Other options:", 3},
{"pidfile", 'P', "PATH", 0, "File to log the PID into", 3},
{"priority", 'p', "STRING", 0, "GnuTLS ciphersuite priority string", 3},
{"inetd", 'i', NULL, 0, "Enable inetd mode", 3},
- {"debug", 'D', NULL, 0, "Do not fork", 3},
+ {"debug", 'D', NULL, 0, "Run the server into foreground", 3},
{0, 0, 0, 0, NULL, 0}
};
int debug;
} crywrap_config_t;
-/** @defgroup options Options.
- * These are the compile-time options.
- * @{
- */
-/** If this option is set, CryWrap will fork into the background.
- */
-#ifndef CRYWRAP_OPTION_FORK
-#define CRYWRAP_OPTION_FORK 1
-#endif
-
-#if CRYWRAP_OPTION_NOFORK
-#undef CRYWRAP_OPTION_FORK
-#endif
-
/** @} *//* End of the Options group */
#endif /* !_CRYWRAP_H */
-/* arch-tag: ebfe1550-0fec-4c0d-8833-23e48292e75d */