1 
 2 /* BEGIN INCLUDE FILE imp_orders.incl.pl1                                       */
 3 
 4 /*             This include file declares the special order codes accepted by   */
 5 /*        the IMP DIM.                                                          */
 6 
 7 /*        Originally created by D. M. Wells, September, 1977.                   */
 8 
 9      declare
10          (IMP_ORDER_abort_transfer                initial (1),        /* flush buffered data                  */
11           IMP_ORDER_multiple_message_mode         initial (2),        /* pack messages together if possible   */
12           IMP_ORDER_single_message_mode           initial (3),        /* don't pack messages together         */
13           IMP_ORDER_get_status                    initial (4),        /* return status of link and host       */
14           IMP_ORDER_no_ncp                        initial (5),        /* the NCP isn't using this link        */
15           IMP_ORDER_imp_ascii                     initial (6),        /* messages for IMP's  TTY              */
16           IMP_ORDER_control_link                  initial (7),        /* this is NCP's control link           */
17           IMP_ORDER_clear_host_state              initial (8),        /* clear stae of foreign host and IMP   */
18           IMP_ORDER_block_link                    initial (9),        /* stop transferring data on link       */
19           IMP_ORDER_unblock_link                  initial (10),       /* start transferring data on link      */
20           IMP_ORDER_imp_octal                     initial (11),       /* message is for IMP's TTY (octal)     */
21           IMP_ORDER_normal_leader                 initial (12),       /* messages for foreign host again      */
22           IMP_ORDER_pgqlrr                        initial (13),       /* put on global queue when get RFNM    */
23           IMP_ORDER_clear_pgqlrr                  initial (14),       /* clear flag to pgqlrr                 */
24           IMP_ORDER_set_byte_size                 initial (15),       /* setthe link's bytesize               */
25           IMP_ORDER_get_byte_size                 initial (16),       /* get the link's bytesize              */
26           IMP_ORDER_get_allocation_status         initial (17))       /* get status and include allocations   */
27                fixed binary (12) internal static options (constant);
28 
29 /* END INCLUDE FILE imp_orders.incl.pl1                                         */
30