1
2
3 dcl LAP_MPX_METERS_VERSION_1 char (8) aligned static options (constant) init ("lapmmv1");
4 dcl 1 lap_mpx_meters_struc aligned based,
5 2 version char (8),
6 2 current_meters like lap_mpx_meters,
7 2 saved_meters like lap_mpx_meters;
8
9 dcl 1 lap_mpx_meters aligned based,
10 2 wait_time fixed bin (71),
11 2 ack_time fixed bin (71),
12 2 n_frames_in fixed bin (35),
13 2 n_frames_out fixed bin (35),
14 2 bad_interrupts fixed bin (35),
15 2 n_resets fixed bin (35),
16 2 n_rejects fixed bin (35),
17 2 n_retransmissions fixed bin (35);
18
19