1 /* BEGIN INCLUDE FILE ... fnp_types.incl.pl1 */ 2 3 4 5 /****^ HISTORY COMMENTS: 6 1) change(88-06-15,Berno), approve(88-07-13,MCR7928), 7 audit(88-06-15,Parisek), install(88-07-19,MR12.2-1061): 8 Add data needed for the uncp multiplexer (DSA gateway) interface 9 implementation. 10 END HISTORY COMMENTS */ 11 12 13 /* Values for fnpe.type field */ 14 /* 15 Created 79 May 14 by Art Beattie by splitting information out from cdt.incl.pl1 16 Added in March 1982 - DN7100.fd. 17 */ 18 19 dcl (DN355 init (1), /* a DataNet 355 FNP */ 20 DN6600 init (2), /* a DataNet 6600 FNP */ 21 DN6670 init (3), /* a Honeywell Bull Network Processor (18x) */ 22 DN7100 init (4) /* The DSA Datanet architecture (DN7) */ 23 ) fixed bin internal static options (constant); 24 25 dcl fnp_types (4) char (8) int static options (constant) 26 init ("DN355", "DN6600", "DN6670", "DN7100"); 27 28 dcl fnp_models (4) fixed bin (17) int static options (constant) 29 init (355, 6600, 6670, 7100); 30 31 dcl supported_fnp (4) bit (1) int static options (constant) 32 init ("0"b, "0"b, "1"b, "1"b); 33 34 35 /* END INCLUDE FILE ... fnp_types.incl.pl1 */