1 /* Begin include file ..... multiplexer_types.incl.pl1 */
 2 
 3 
 4 
 5 /****^  HISTORY COMMENTS:
 6   1) change(89-03-20,Parisek), approve(89-06-01,MCR8110),
 7      audit(89-10-09,Farley), install(89-10-25,MR12.3-1100):
 8      Add support of protocol mpx.
 9                                                    END HISTORY COMMENTS */
10 
11 
12 /* This include file defines known multiplexer types */
13 /* Prepared August 1978 by Larry Johnson */
14 /* Changed April 1979 to rename the fnp multiplexer mcs */
15 
16 dcl (TTY_MPX init (0),                                      /* nonmultiplexed channel */
17      MCS_MPX init (1),                                      /* FNP running MCS */
18      USER1_MPX init (2),                                    /* a range of values for user defined multiplexers */
19      USER2_MPX init (3),
20      USER3_MPX init (4),
21      USER4_MPX init (5),
22      USER5_MPX init (6),
23      IBM3270_MPX init (7),                                  /* IBM 3270 display terminal controller */
24      VIP7760_MPX init (8),                                  /* Honeywell VIP 7760 terminal controller */
25      STY_MPX init (9),                                      /* Software Terminal Facility */
26      LAP_MPX init (10),                                     /* Link Access Protocol (X.25 level 2) */
27      X25_MPX init (11),                                     /* CCITT X.25 level 3 */
28      HASP_MPX init (12),                                    /* HASP RJE protocol */
29      UNCP_MPX init (13),                                    /* DSA protocol */
30      SYSTEM2_MPX init (14),
31      SYSTEM1_MPX init (15),
32      PROTOCOL_MPX init (16))                                /* TCP/IP network X.25 protocol */
33      int static options (constant);
34 
35 dcl  mpx_types (0:16) char (32) int static options (constant) init (
36      "tty", "mcs", "user1", "user2", "user3", "user4", "user5", "ibm3270",
37      "vip7760", "sty", "lap", "x25", "hasp", "uncp", "system2", "system1",
38      "protocol");
39 
40 dcl  mpx_special_lock (0:16) bit (1) int static options (constant) init (
41      "0"b, "1"b, "0"b, "0"b, "0"b, "0"b, "0"b, "0"b,
42      "0"b, "0"b, "0"b, "0"b, "0"b, "1"b, "0"b, "0"b, "0"b);
43 
44 /* End include file ..... multiplexer_types.incl.pl1 */