X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=server%2Foptions.h;h=839bc4d38a8a53d09e55df2a23a2f8b2f10e8963;hb=1780973fb10ed5ef2a69d861b14e8f58cdc4369f;hp=66cad6c67d8e7b8f6c5613652d7105025cfc0a8a;hpb=b1a8334f97f84e10ee9cef96377bbdcfbf5f945c;p=matches%2FMCTX3420.git diff --git a/server/options.h b/server/options.h index 66cad6c..839bc4d 100644 --- a/server/options.h +++ b/server/options.h @@ -1,18 +1,41 @@ /** * @file options.h - * @purpose Declaration of structure to handle options passed to program + * @brief Define the Options structure and the g_options variable */ #ifndef _OPTIONS_H #define _OPTIONS_H + +/** Store options passed or calculated from arguments to the program **/ typedef struct { - const char * program; //name of program - int verbosity; // verbosity level + /** Name of program **/ + const char * program; + /** Determines at what level log messages are shown **/ + int verbosity; + /** Time at which program begins to run **/ + struct timeval start_time; + /** Time at which program exits **/ + struct timeval end_time; + + /** Whether or not to enable the pin_test module **/ + bool enable_pin; + + /** URI for authentication **/ + const char * auth_uri; + + /** Base DN for LDAP authentication **/ + const char * ldap_base_dn; + + /** Authentication method **/ + enum {AUTH_NONE, AUTH_LDAP, AUTH_SHADOW} auth_method; + + } Options; -extern Options g_options; // global options structure +/** The only instance of the Options struct **/ +extern Options g_options; #endif //_OPTIONS_H