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: ┃ B T

⟦34e49f8de⟧ TextFile

    Length: 1041 (0x411)
    Types: TextFile
    Names: »B«

Derivation

└─⟦516dceb10⟧ Bits:30000751 8mm tape, Rational 1000, RCI_VADS
    └─ ⟦9a14c9417⟧ »DATA« 
        └─⟦this⟧ 

TextFile

separate (Library_Extensions)
procedure Acquire_Connection  
             (Remote_Connection : in out Rci.Context;
              Remote_Machine    :        String;
              Status            : in out Simple_Status.Condition) is


begin
    if not Simple_Status.Error (Status) then
        Rci.Acquire  
           (Remote_Connection => Remote_Connection,
            Status            => Status,
            Target_Key        => Target_Key_Id,
            Remote_Machine    => Remote_Machine,
            Username          => Ftp_Profile.Username,
            Password          => Ftp_Profile.Password,
            Trace_Command     => Trace_Rci_Commands);

        if Simple_Status.Error (Status) then

            Log.Put_Line  
               (Message => Simple_Status.Message (Status),
                Kind    => Profile.Negative_Msg);

            Set_Status  
               (Status  => Status,
                Message => "Unable to acquire connection to " & Remote_Machine);

        end if;
    end if;


end Acquire_Connection;