DataMuseum.dkPresents historical artifacts from the history of: Rational R1000/400 Tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about Rational R1000/400 Tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - downloadIndex: ┃ T V ┃
Length: 1892 (0x764) Types: TextFile Names: »V«
└─⟦149519bd4⟧ Bits:30000546 8mm tape, Rational 1000, !projects 93-07-13 └─ ⟦124ff5788⟧ »DATA« └─⟦this⟧ └─⟦f64eaa120⟧ Bits:30000752 8mm tape, Rational 1000, !projects 93 02 16 └─ ⟦6f12a12be⟧ »DATA« └─⟦this⟧
WITH Transport_Defs; PACKAGE Net_Info_Test IS FUNCTION Test_String RETURN String; -- Returns a string that will be used as a test message for transmisison -- between the server and client. FUNCTION Net_Name RETURN Transport_Defs.Network_Name; -- Returns the network name to be used in Transport.Open calls. -- The will be changed by the user in the body as necessary and the body -- recompiled. FUNCTION R1000_Address RETURN Transport_Defs.Host_Id; -- Returns the internet address of the R1000 used for testing -- This address is set by the user in the package body and recompiled for -- each specific host. FUNCTION Sparc_Address RETURN Transport_Defs.Host_Id; -- Returns the internet address of the Sun Sparc station used for testing -- This address is set by the user in the package body and recompiled for -- each specific host. FUNCTION R1000_Socket RETURN Transport_Defs.Socket_Id; -- Returns the socket_id to be used by the R1000 Server to Open a local -- socket and perform a passive connect. The passive connect binds a -- name to the local socket and listens for an incoming connection from a -- remote client. The local socket must be a valid socket_id for the -- Server system. -- -- This socket_id is also used by the Sparc Client as the Remote Socket -- for its active connection. FUNCTION Sparc_Socket RETURN Transport_Defs.Socket_Id; -- Returns the socket_id to be used by the Sparc Server to Open a local -- socket and perform a passive connect. The passive connect binds a -- name to the local socket and listens for an incoming connection from a -- remote client. The local socket must be a valid socket_id for the -- Server system. -- -- This socket_id is also used by the R1000 Client as the Remote Socket -- for its active connection. END Net_Info_Test;