This repository has been archived by the owner on Jul 21, 2023. It is now read-only.
Releases: samueltardieu/adasockets
Releases · samueltardieu/adasockets
AdaSockets 1.11.1
v1.11.1 AdaSockets 1.11.1
AdaSockets 1.11.0
Multicast receiver fix by Guillaume Foliard.
AdaSockets 1.10.1
Cleanups in the build process and in the installed info file.
AdaSockets 1.10
Do not signal SIGPIPE
is the remote peer is closed.
AdaSockets 1.9.2
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
Remove the Reason
parameter of pragma Warnings
because older compilers do not support it.
AdaSockets 1.9
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
Fix style issue that could prevent building with some compiler options.