From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.3 required=5.0 tests=BAYES_00,INVALID_MSGID autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,bfee0a4bc5989cc2 X-Google-Attributes: gid103376,public From: Andi Kleen Subject: Re: TCP/IP in Ada Date: 1998/02/03 Message-ID: #1/1 X-Deja-AN: 321643818 Distribution: world Sender: andi@fred.muc.de References: <34D5DE5A.1EF6@cci.de> Organization: [posted via] Leibniz-Rechenzentrum, Muenchen (Germany) Newsgroups: comp.lang.ada Date: 1998-02-03T00:00:00+00:00 List-Id: Holger Noseck writes: > Hello, > > I want to use the Ada-TCP/IP-Implemenation, written by Unisys Defense > Systems in 1987, and available on the PAL-CD (PAL: Public Ada Library). > > - Did anyone already test this TCP/IP-Implementation - not only compile > it? And can he or she tell me about the experiences? > - This TCP/IP-Implementation provides code for the levels 3 and 4 of > the > ISO/OSI protocol. Does anybody have a level-2-implementation IN ADA > (i.e. a local network implementation), which cooperates with > the Unisys-TCP/IP-Implementation? > - Even more wonderful: Is this level-2-implementation usable for > Windows-NT and a Cogent-Ethernet-Card? I looked at this implementation and it is very outdated. For example it doesn't support Van Jacobsen Congestion Avoidance which makes it evil to moderately sized networks (its massive use could lead to congestion collapse etc.). Also there is no fast retransmit and other features of modern TCP/IP stacks like delayed acks. The implementation is far from RFC1122 compliance. IMHO it needs some major work before it is usable. Why don't you just use the standard TCP/IP Stack supplied with NT and write a Binding to the WinSock library? -Andi