1 /* ------------------ BEGIN include file protocols.incl.pl1 -------------- */ 2 3 4 5 /****^ HISTORY COMMENTS: 6 1) change(89-03-16,Parisek), approve(89-10-25,MECR0012), 7 audit(89-10-25,Farley), install(89-10-25,MR12.3-1100): 8 Add support of protocol mpx. 9 END HISTORY COMMENTS */ 10 11 /* Ecrit en mars 1986 par C. Claveleira - CICB */ 12 13 /* Derniere version : */ 14 /* */ 15 /* 14 mars 1986 : C. Claveleira */ 16 /* 26 nov. 1986 : C. Claveleira - version 1.8 of protocol_mpx */ 17 18 dcl layer3_ISO fixed bin static options (constant) init (1); 19 dcl layer3_IP fixed bin static options (constant) init (2); 20 dcl layer3_X29 fixed bin static options (constant) init (3); 21 dcl layer3_XNS fixed bin static options (constant) init (4); 22 23 24 dcl layer3_call_datas (4) char (48) varying static options (constant) init ( 25 "^C^A^A^@", /* 3,1,1,0 */ 26 "Ì", /* $CC */ 27 "^A^@^@^@", /* 1,0,0,0 */ 28 "" /* inconnu pour l'instant ! */ 29 ); 30 31 /* ---------- END INCLUDE FILE ... protocols.incl.pl1 --------- */