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.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Thread: a07f3367d7,131e3d946b949413 X-Google-Attributes: gida07f3367d7,public,usenet X-Google-NewGroupId: yes X-Google-Language: ENGLISH,ASCII-7-bit X-Received: by 10.68.234.202 with SMTP id ug10mr9131981pbc.6.1363061051226; Mon, 11 Mar 2013 21:04:11 -0700 (PDT) MIME-Version: 1.0 Path: q9ni12119pba.1!nntp.google.com!npeer03.iad.highwinds-media.com!news.highwinds-media.com!feed-me.highwinds-media.com!border3.nntp.dca.giganews.com!border1.nntp.dca.giganews.com!border4.nntp.dca.giganews.com!border2.nntp.dca.giganews.com!backlog2.nntp.ams.giganews.com!border4.nntp.ams.giganews.com!border2.nntp.ams.giganews.com!border3.nntp.ams.giganews.com!border1.nntp.ams.giganews.com!nntp.giganews.com!weretis.net!feeder1.news.weretis.net!feeder4.news.weretis.net!nuzba.szn.dk!news.jacob-sparre.dk!munin.jacob-sparre.dk!pnx.dk!.POSTED!not-for-mail From: "Randy Brukardt" Newsgroups: comp.lang.ada Subject: Re: UDP networking with Ada Date: Thu, 7 Mar 2013 21:46:13 -0600 Organization: Jacob Sparre Andersen Research & Innovation Message-ID: References: NNTP-Posting-Host: static-69-95-181-76.mad.choiceone.net X-Trace: munin.nbi.dk 1362714375 15793 69.95.181.76 (8 Mar 2013 03:46:15 GMT) X-Complaints-To: news@jacob-sparre.dk NNTP-Posting-Date: Fri, 8 Mar 2013 03:46:15 +0000 (UTC) X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.2900.5931 X-RFC2646: Format=Flowed; Response X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.6157 X-Original-Bytes: 1963 X-Received-Bytes: 2246 Date: 2013-03-07T21:46:13-06:00 List-Id: "Peter C. Chapin" wrote in message news:SL-dnUB_sIRxqKTM4p2dnAA@giganews.com... >I have an interest in doing some network programming in Ada using UDP. I >assumed I could use GNAT.Sockets but in reading the specification of that >package it appears that it only supports TCP. I browsed around the various >other GNAT packages but I didn't see anything for UDP and now I'm wondering >what my options are. NCSockets has a "datagram" type (which uses UDP). I don't know how well-tested it is, I think I used it once for some DNS experiments (but I'm sure that the TCP code has been tested much more). NCSockets is a descendant of Claw.Sockets; there are of course Windows versions and there is an unfinished 64-bit Linux version (started by Tero K.) that will get a lot more work in the next few weeks as I'll be using it to port Ada-Auth's server to a new Linux box. Randy.