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,FREEMAIL_FROM autolearn=unavailable autolearn_force=no version=3.4.4 X-Received: by 10.58.85.3 with SMTP id d3mr2890271vez.40.1391725411747; Thu, 06 Feb 2014 14:23:31 -0800 (PST) X-Received: by 10.50.13.7 with SMTP id d7mr42305igc.16.1391725411460; Thu, 06 Feb 2014 14:23:31 -0800 (PST) Path: border1.nntp.dca.giganews.com!nntp.giganews.com!usenet.blueworldhosting.com!feeder01.blueworldhosting.com!news.ripco.com!news.glorb.com!f11no13230469qae.1!news-out.google.com!vg8ni16igb.0!nntp.google.com!c10no11330434igq.0!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail Newsgroups: comp.lang.ada Date: Thu, 6 Feb 2014 14:23:31 -0800 (PST) In-Reply-To: <1408dd3b-f555-4b75-94ef-cdb9c06ed0ca@googlegroups.com> Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=66.126.103.122; posting-account=KSa2aQoAAACOxnC0usBJYX8NE3x3a1Xq NNTP-Posting-Host: 66.126.103.122 References: <1408dd3b-f555-4b75-94ef-cdb9c06ed0ca@googlegroups.com> User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: <173b40e2-b288-4375-9842-e6058e565379@googlegroups.com> Subject: Re: Need help creating a multi client TCP server with Ada From: adambeneschan@gmail.com Injection-Date: Thu, 06 Feb 2014 22:23:31 +0000 Content-Type: text/plain; charset=ISO-8859-1 Xref: number.nntp.dca.giganews.com comp.lang.ada:184692 Date: 2014-02-06T14:23:31-08:00 List-Id: On Thursday, February 6, 2014 1:42:46 PM UTC-8, alex....@gmail.com wrote: > I tried to create a doubly linked list which points to channel( GNAT.Sockets.Stream_Access ) using Ada.containers with out any luck! It seems that Ada.containers.double_linked_list cant be used with stream_access types. Why not? Are you getting an error like "no visible subprogram matches the specification for "=""? If that's the case, try adding this before instantiating Doubly_Linked_List: use type GNAT.Sockets.Stream_Access; -- Adam