DataMuseum.dk

Presents historical artifacts from the history of:

Rational R1000/400 Tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about Rational R1000/400 Tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - download
Index: ┃ T V

⟦d55647004⟧ TextFile

    Length: 2632 (0xa48)
    Types: TextFile
    Names: »V«

Derivation

└─⟦5f3412b64⟧ Bits:30000745 8mm tape, Rational 1000, ENVIRONMENT 12_6_5 TOOLS 
    └─ ⟦91c658230⟧ »DATA« 
        └─⟦458657fb6⟧ 
            └─⟦a5bbbb819⟧ 
                └─⟦this⟧ 
└─⟦d10a02448⟧ Bits:30000409 8mm tape, Rational 1000, ENVIRONMENT, D_12_7_3
    └─ ⟦fc9b38f02⟧ »DATA« 
        └─⟦9b46a407a⟧ 
            └─⟦eec0a994f⟧ 
                └─⟦this⟧ 

TextFile

with Telnet_Port;
with Telnet_Protocol;
with Transport_Defs;

package Telnet_Tools is

    -- Some commonly-used operations derived from Telnet_Port, etc.

    Telnet_Network : constant Transport_Defs.Network_Name :=
       Transport_Defs.Normalize ("TCP/IP");
    Telnet_Socket : constant Transport_Defs.Socket_Id := (0, 23);

    procedure Connect
                 (Connection : out Telnet_Protocol.Connection_Id;
                  Status : out Transport_Defs.Status_Code;
                  Remote_Host : Transport_Defs.Host_Id;
                  Network : Transport_Defs.Network_Name := Telnet_Network;
                  Remote_Socket : Transport_Defs.Socket_Id := Telnet_Socket;
                  Max_Wait : Duration := Duration'Last;
                  Max_Retries : Natural := 2);
    -- Form a Telnet connection to the specified Remote_Host:
    -- Transport.Open (X, Status, Network);
    -- Transport.Connect (X, Status, Remote_Host, Remote_Socket, Max_Wait);
    -- if Status = Connection_Refused then retry, up to Max_Retries times;
    -- Telnet_Protocol.Open (Connection, X).

    procedure Connect
                 (Connection : out Telnet_Protocol.Connection_Id;
                  Status : out Transport_Defs.Status_Code;
                  Remote_Host_Name : String;
                  Remote_Socket : Transport_Defs.Socket_Id := Telnet_Socket;
                  Max_Wait : Duration := Duration'Last;
                  Max_Retries : Natural := 2);
    -- Form a Telnet connection to the specified Remote_Host:
    -- Resolve Remote_Host_Name to a Host_Id and Network_Name,
    -- using package Transport_Name;
    -- Connect (Connection, etc..);

    procedure Connect
                 (File : Telnet_Port.File_Type;
                  Status : out Transport_Defs.Status_Code;
                  Remote_Host : Transport_Defs.Host_Id;
                  Network : Transport_Defs.Network_Name := Telnet_Network;
                  Remote_Socket : Transport_Defs.Socket_Id := Telnet_Socket;
                  Max_Wait : Duration := Duration'Last;
                  Max_Retries : Natural := 2);
    procedure Connect
                 (File : Telnet_Port.File_Type;
                  Status : out Transport_Defs.Status_Code;
                  Remote_Host_Name : String;
                  Remote_Socket : Transport_Defs.Socket_Id := Telnet_Socket;
                  Max_Wait : Duration := Duration'Last;
                  Max_Retries : Natural := 2);
    -- Form a Telnet connection to the specified Remote_Host:
    -- Connect (Telnet_Protocol.Connection_Id'(X), etc...);
    -- Telnet_Port.Connect (File, X);

end Telnet_Tools;