1 /* Begin include file as_request_sender_.incl.pl1 84-06-06 BIM */
 2 
 3 /****^  HISTORY COMMENTS:
 4   1) change(86-10-14,Lippard), approve(85-12-30,MCR7326),
 5      audit(86-10-24,GDixon), install(86-10-28,MR12.0-1200):
 6       Added max_authorization and audit_flags.
 7                                                    END HISTORY COMMENTS */
 8 
 9 /* Structure passed from as_request_server_ to the various
10    requests to identify requester. */
11 /* format: style3,indcomtxt */
12 
13 declare   as_request_sender_ptr
14                               pointer;
15 declare   1 as_request_sender aligned based (as_request_sender_ptr),
16             2 version         char (8) aligned,
17             2 reply_message   fixed bin (71),
18             2 group_id        char (32) unaligned,
19             2 process_id      bit (36),
20             2 validation_level
21                               fixed bin (3),
22             2 authorization   bit (72),
23             2 max_authorization
24                               bit (72),
25             2 audit_flags     bit (36);
26 
27 declare   AS_REQUEST_SENDER_VERSION_2
28                               char (8) init ("asrqs002") internal static options (constant);
29 
30 /* End include file as_request_sender_.incl.pl1 */