1 /* ***********************************************************
 2    *                                                         *
 3    * Copyright, (C) Honeywell Information Systems Inc., 1982 *
 4    *                                                         *
 5    *********************************************************** */
 6 /* Structure of "communications" segment */
 7 
 8 dcl  communications_version_2 fixed bin init (2) int static options (constant);
 9 
10 dcl 1 communications based (com_p) aligned,                 /* Administrators and answering service use it */
11     2 admin_word char (8) unal,                             /* Operator password for admin mode */
12     2 ppmdl fixed bin,                                      /* Per-process master drum limit */
13     2 ppmdl_daemon fixed bin,                               /* ... for daemon */
14     2 ssdq fixed bin,                                       /* Process directory disk quota */
15     2 ssdq_daemon fixed bin,                                /* ... for daemon */
16     2 junk (4) fixed bin,
17     2 version fixed bin,
18     2 admin_sw fixed bin,                                   /* Length of administrator's command */
19     2 admin_comment char (80) unal,                         /* any old comment */
20     2 admin_sender char (32) unal,                          /* Who sent it */
21     2 as_procid bit (36),                                   /* Process id of answering service */
22     2 admin_com_chn fixed bin (71),                         /* Event-call channel for admin command */
23     2 admin_com char (4000) unaligned;                      /* actual command line */
24 
25 /* end of "communications" */