1 
 2 /*             "user_telnet_option_dcls.incl.pl1" -- include file to declare    */
 3 /*        the structure of the information known about TELNET options.          */
 4 
 5      declare
 6           1 option_status_template aligned based,
 7              2 info_data_ptr pointer unaligned,
 8              2 cur_state unaligned,
 9                 3 option_supported bit (1) unaligned,
10                 3 option_allowed bit (1) unaligned,
11                 3 option_in_effect bit (1) unaligned,
12                 3 option_invocation_requested bit (1) unaligned,
13                 3 option_revocation_requested bit (1) unaligned,
14              2 padding bit (31) unaligned;
15 
16 /*        end include file "user_telnet_option_dcls.incl.pl1"                   */
17