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: 103376,da047bd41d707e54 X-Google-Attributes: gid103376,domainid0,public,usenet X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news2.google.com!news4.google.com!news.germany.com!news.belwue.de!newsfeed.arcor.de!newsspool4.arcor-online.net!news.arcor.de.POSTED!not-for-mail Date: Thu, 18 Dec 2008 10:28:08 +0100 From: Georg Bauhaus User-Agent: Thunderbird 2.0.0.18 (Macintosh/20081105) MIME-Version: 1.0 Newsgroups: comp.lang.ada Subject: Re: networking support? References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Message-ID: <494a17a9$0$30226$9b4e6d93@newsspool1.arcor-online.net> Organization: Arcor NNTP-Posting-Date: 18 Dec 2008 10:28:09 CET NNTP-Posting-Host: 7783c5e5.newsspool1.arcor-online.net X-Trace: DXC=N;Ze]b5]RID6PJ?[X6JIXEic==]BZ:afN4Fo<]lROoRA^YC2XCjHcbI\cIhE]BZjMB;9OJDO8_SKFNSZ1n^B98iJMFaIYd^X9A@ X-Complaints-To: usenet-abuse@arcor.de Xref: g2news2.google.com comp.lang.ada:3998 Date: 2008-12-18T10:28:09+01:00 List-Id: Oliver Kowalke schrieb: > Hi, > does Ada support IPsec (key management sockets)? How is io-demultiplexing > used (select, epoll, kqueue, /dev/pool,...) used? These being OS functions, you probably have interfacing packages for your compiler. For some, you might be able to use POSIX packages; others, such as access to /dev/anything are really OS specific, not typically built into any programming language, but rather available as library calls. In case you want to call them directly, as you would using C, just call them, after, say, function select (nfds: C.int, ... etc etc ...) retrun C.int; pragma Inport(C, select);