1 
 2 /*        BEGIN include file net_iosim_constants.incl.pl1             */
 3 
 4 /*             This include file contains declarations for the        */
 5 /*        ARPANET IOSIMs.  These are common types used to choose      */
 6 /*        among the various types of services provided by those       */
 7 /*        IOSIMs.                                                    */
 8 
 9 /*        Originally created by D. M. Wells, April, 1977.             */
10 
11      declare
12          (ATTACH_UNSPECIFIED            initial (0),        /* reserved uninitialized value                   */
13           ATTACH_SOCKET                 initial (1),        /* normal attach -- in default socket group       */
14           ATTACH_PRIV_SOCKET            initial (2),        /* attach priv socket in specified socket group   */
15           ATTACH_PASSOFF_SOCKET         initial (3))        /* accept socket attached by someone else         */
16                fixed binary (17) internal static options (constant);
17 
18      declare
19          (NO_CONNECTION                 initial (0),        /* Don't do anything special about connection     */
20           ICP_CONNECTION                initial (1),        /* Use Initial Connection protocol                */
21           LISTEN_CONNECTION             initial (2),        /* Let other side initiate connection             */
22           INITIATE_CONNECTION           initial (3))        /* We will take initiative and issued first RFC   */
23                fixed binary (10) internal static options (constant);
24 
25 /*        END include file net_iosim_constants.incl.pl1               */
26