1 /* Declaration of the network log file.
 2 
 3    This file contains all error messages put out by the network overseer process */
 4 
 5 dcl 1 net_log_file based (net_log_ptr) aligned,
 6     2 count fixed bin,                                      /* number of messages */
 7     2 max fixed bin,                                        /* maximum number */
 8     2 ttime fixed bin (71),                                 /* date & time of last message */
 9     2 lep fixed bin,                                        /* last entry processed by daily_log_process */
10     2 lls char (12),                                        /* suffix on last log */
11     2 array (2048),
12       3 time fixed bin (71),                                /* time of entry */
13       3 svty fixed bin,                                     /* severity of entry */
14       3 line char (116);                                    /* error message. entry is 32 words */
15 
16 /* end of network log declaration */