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 - metrics - download
Index: T V

⟦cd15c14b2⟧ TextFile

    Length: 1316 (0x524)
    Types: TextFile
    Names: »V«

Derivation

└─⟦180fe333a⟧ Bits:30000405 8mm tape, Rational 1000, SW CATALOG, 10_20_0
└─⟦180fe333a⟧ Bits:30000537 8mm tape, Rational 1000, SW Catalog 10_20_0
    └─⟦5cb1d1d7f⟧ »DATA« 
        └─⟦3b1ee7bd8⟧ 
            └─⟦this⟧ 

TextFile

with Transport;
with Byte_Defs;
package Tftp_Utilities is
    Fatal_Error : exception;
    Timeout : exception;
    type Error_Class is (Not_Defined, File_Not_Found, Access_Violation,
                         Medium_Full, Illegal_Operation, Unknown_Tid);
    type Requestor_Type is (Server, Client);
    type Transfer_Mode is (Text, Binary, Mail);
    procedure Send_Error (To : Transport.Connection_Id;
                          Class : Tftp_Utilities.Error_Class;
                          Error_Text : String);
    procedure Receive_A_File (Remote_Pathname : String;
                              Local_Pathname : String;
                              Mode : Tftp_Utilities.Transfer_Mode;
                              Requestor : Tftp_Utilities.Requestor_Type;
                              From : in out Transport.Connection_Id);
    procedure Send_A_File (Local_Pathname : String;
                           Remote_Pathname : String;
                           Mode : Tftp_Utilities.Transfer_Mode;
                           Requestor : Tftp_Utilities.Requestor_Type;
                           To : in out Transport.Connection_Id);
    procedure Extract_String (From : Byte_Defs.Byte_String;
                              To : out String;
                              Last : out Natural);
end Tftp_Utilities;