1 /* BEGIN INCLUDE FILE ... polled_vip_mpx_meters.incl.pl1 */
 2 
 3 /* Defines the structure used for metering of a polled_vip multiplexer */
 4 
 5 /* Written June 1981 by Robert Coren */
 6 
 7 dcl 1 pvip_mpx_meter_struc based aligned,
 8     2 version fixed bin,
 9     2 pad fixed bin,
10     2 current_meters like pvip_mpx_meters,
11     2 saved_meters like pvip_mpx_meters;
12 
13 dcl 1 pvip_mpx_meters based aligned,
14     2 input_timeouts fixed bin,
15     2 input_frames_lost fixed bin,
16     2 output_frames_lost fixed bin,
17     2 bad_output_frames fixed bin,
18     2 output_timeouts fixed bin;
19 
20 dcl  PVIP_MPX_METERS_VERSION_1 internal static options (constant) init (1);
21 
22 /* END INCLUDE FILE ... polled_vip_mpx_meters.incl.p1l */