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: 1910 (0x776) Types: TextFile Names: »V«
└─⟦149519bd4⟧ Bits:30000546 8mm tape, Rational 1000, !projects 93-07-13 └─ ⟦124ff5788⟧ »DATA« └─⟦this⟧ └─⟦a7d1ea751⟧ Bits:30000550 8mm tape, Rational 1000, !users!projects 94_04_11 └─ ⟦129cab021⟧ »DATA« └─⟦this⟧ └─⟦f64eaa120⟧ Bits:30000752 8mm tape, Rational 1000, !projects 93 02 16 └─ ⟦6f12a12be⟧ »DATA« └─⟦this⟧ └─⟦2f6cfab89⟧ Bits:30000547 8mm tape, Rational 1000, !projects 94-01-04 └─ ⟦d65440be7⟧ »DATA« └─⟦this⟧
with Transport_Defs; package Net_Info 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 Rs6k_Address return Transport_Defs.Host_Id; -- Returns the internet address of the IBM rs6k 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 rs6k Client as the Remote Socket -- for its active connection. function Rs6k_Socket return Transport_Defs.Socket_Id; -- Returns the socket_id to be used by the rs6k 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;