Skip to content
This repository has been archived by the owner on Jul 21, 2023. It is now read-only.

Releases: samueltardieu/adasockets

AdaSockets 1.11.1

09 Apr 15:24
v1.11.1
Compare
Choose a tag to compare
v1.11.1

AdaSockets 1.11.1

AdaSockets 1.11.0

15 Mar 11:03
v1.11.0
Compare
Choose a tag to compare

Multicast receiver fix by Guillaume Foliard.

AdaSockets 1.10.1

21 Sep 11:19
v1.10.1
Compare
Choose a tag to compare

Cleanups in the build process and in the installed info file.

AdaSockets 1.10

02 Dec 14:52
v1.10
Compare
Choose a tag to compare

Do not signal SIGPIPE is the remote peer is closed.

AdaSockets 1.9.2

27 Aug 12:13
v1.9.2
Compare
Choose a tag to compare

This release makes the build reproducible (no mention of date, platform, timestamps, etc.) so that a user can ensure that a binary version can be reproduced exactly as-is.

AdaSockets 1.9.1

21 Apr 09:26
v1.9.1
Compare
Choose a tag to compare

Remove the Reason parameter of pragma Warnings because older compilers do not support it.

AdaSockets 1.9

02 Aug 17:55
v1.9
Compare
Choose a tag to compare

This release introduces two new functions:

   function Get_Send_Queue_Size (Socket : Socket_FD) return Integer;
   --  Return size of unsent data in socket output buffer.
   --  Return a value less than 0 in case of error. -2 means that the
   --  information is not available (Linux only).

   function Get_Receive_Queue_Size (Socket : Socket_FD) return Integer;
   --  Return size of unread data in socket input buffer.
   --  Return a value less than 0 in case of error. -2 means that the
   --  information is not available (Linux only).

AdaSockets 1.8.12

02 Aug 16:33
v1.8.12
Compare
Choose a tag to compare

Fix style issue that could prevent building with some compiler options.