1 /* Begin include file lap_config_data.incl.pl1 */
 2 
 3 dcl  lcdp ptr;
 4 dcl  lap_config_data_version_2 fixed bin static options (constant) init (2);
 5 dcl  1 lap_config_data aligned based (lcdp),
 6        2 version fixed bin,                                 /* this is version 2 */
 7        2 mgr_pid bit (36) aligned,                          /* process ID of managing process */
 8        2 mgr_ev_chn fixed bin (71),                         /* event channel over which crashes should be signalled */
 9        2 flags,
10          3 dce_mode bit unaligned,                          /* we are the DCE */
11          3 disc_first bit unaligned,                        /* send disconnect first */
12          3 abm_mode bit unaligned,                          /* default to ABM */
13        2 sequence_modulus fixed bin,                        /* 8 or 128 */
14        2 max_frame_size fixed bin,                          /* most bits in a frame */
15        2 T1 uns fixed bin (9),                              /* retransmition timer value */
16        2 T3 uns fixed bin (9),                              /* init timer value */
17        2 N2 uns fixed bin (9),                              /* maximum retry count */
18        2 window fixed bin;                                  /* window size */
19 
20 /* End include file lap_config_data.incl.pl1 */