X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=server%2Foptions.h;h=05f7ddf39eb122f9aa5610cd8db3556e14945230;hb=6d02539604cd90ae992e69d3f6a839044b6c6fef;hp=297acf4acfd1c22fbff30356192d9970597ea4ae;hpb=01e621afb7cfbc4b570cac55128f5023798a9ce3;p=matches%2FMCTX3420.git diff --git a/server/options.h b/server/options.h index 297acf4..05f7ddf 100644 --- a/server/options.h +++ b/server/options.h @@ -1,6 +1,6 @@ /** * @file options.h - * @purpose Define the Options structure and the g_options variable + * @brief Define the Options structure and the g_options variable */ #ifndef _OPTIONS_H @@ -14,6 +14,18 @@ typedef struct 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; + + /** Path to ADC files **/ + const char * adc_device_path; + + /*** Horrible horrible hack ***/ + int argc; + /*** Horrible horrible hack ***/ + char ** argv; } Options;