1 /* BEGIN INCLUDE FILE ... mlsys_address_route.incl.pl1 */ 2 /* Created: June 1983 by G. Palter */ 3 4 /* Definition of a mail system address route */ 5 6 dcl 1 address_route aligned based (address_route_ptr), 7 2 header, 8 3 version character (8) unaligned, 9 3 reserved bit (144), /* ... exclusively for use by the mail system */ 10 3 n_relays fixed binary, /* # of relay systems in the route */ 11 2 relays (address_route_n_relays refer (address_route.n_relays)) character (256) varying; 12 /* the relays: relays(1) is closest to the local host */ 13 14 dcl ADDRESS_ROUTE_VERSION_1 character (8) static options (constant) initial ("mlsrte01"); 15 16 dcl address_route_ptr pointer; 17 18 dcl address_route_n_relays fixed binary; /* for allocating above structure (users do on occasion) */ 19 20 /* END INCLUDE FILE ... mlsys_address_route.incl.pl1 */