
/*  
    Quarter start-dates and end-dates
    These constants are in terms of days with Jan 1 being 1
    and Dec 31 being 365
*/

#define FALL_START_DATE 235             /*  August 23  */
#define FALL_END_DATE 365
#define WINTER_START_DATE 1             /*  Jan 5 (but Jan 1 considered)  */
#define WINTER_END_DATE 88
#define SPRING_START_DATE 89            /*  March 30 */
#define SPRING_END_DATE 171
#define SUMMER_START_DATE 172           /*  June 21  */
#define SUMMER_END_DATE 234

/*
    File names used in the program files and their paths.
    Please modify the file paths here.  For more information,
    refer to the documentation available.
*/

#define PROXYLOG "/hm31/webtrack/apache_1.2.6/logs/proxylog"
#define CLASS_AND_ROOM_TXT "/hm31/webtrack/class_and_room.txt"
#define ROOM_IP_MAPPING_TXT "/hm31/webtrack/room_ip_mapping.txt"
#define SEARCH_RESULTS_XML "/hm31/webtrack/search_files/search_results.xml"
#define GREPEXP "/hm31/webtrack/search_files/grepexp"
#define SGREP "/hm31/webtrack/sgrep-0.99/sgrep"

/*
    Log File format.  Please do NOT change this format unless you are
    absolutely sure and understand how the format matters in the program
    logic.  Again, refer to the documentation available.
*/
    
#define DEFAULT_LOG_FORMAT "%{%m/%d/%Y %I:%M:%S %p}t %h %r"

#define MAX_STR_LEN 128    /*  Used in malloc  */ 
