From: Andreas Jaeger Date: Tue, 1 Apr 2008 15:42:11 +0000 (+0200) Subject: g-soccon-linux-ppc.ads: Add new constants SO_REUSEPORT and IP_PKTINFO. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4d22f5b177b93f19f9ddafcc850c893a7a7b4fb3;p=gcc.git g-soccon-linux-ppc.ads: Add new constants SO_REUSEPORT and IP_PKTINFO. 2008-04-01 Andreas Jaeger * g-soccon-linux-ppc.ads: Add new constants SO_REUSEPORT and IP_PKTINFO. From-SVN: r133792 --- diff --git a/gcc/ada/ChangeLog b/gcc/ada/ChangeLog index 143601c902f..8fc1b0d205a 100644 --- a/gcc/ada/ChangeLog +++ b/gcc/ada/ChangeLog @@ -1,3 +1,8 @@ +2008-04-01 Andreas Jaeger + + * g-soccon-linux-ppc.ads: Add new constants SO_REUSEPORT and + IP_PKTINFO. + 2008-03-31 Ralf Wildenhues * g-table.adb, g-tasloc.adb, g-traceb.ads, diff --git a/gcc/ada/g-soccon-linux-ppc.ads b/gcc/ada/g-soccon-linux-ppc.ads index 52bd5062264..4ae8556f48e 100644 --- a/gcc/ada/g-soccon-linux-ppc.ads +++ b/gcc/ada/g-soccon-linux-ppc.ads @@ -149,6 +149,7 @@ package GNAT.Sockets.Constants is TCP_NODELAY : constant := 1; -- Do not coalesce packets SO_REUSEADDR : constant := 2; -- Bind reuse local address + SO_REUSEPORT : constant := -1; -- Bind reuse port number SO_KEEPALIVE : constant := 9; -- Enable keep-alive msgs SO_LINGER : constant := 13; -- Defer close to flush data SO_BROADCAST : constant := 6; -- Can send broadcast msgs @@ -162,6 +163,7 @@ package GNAT.Sockets.Constants is IP_MULTICAST_LOOP : constant := 34; -- Set/get mcast loopback IP_ADD_MEMBERSHIP : constant := 35; -- Join a multicast group IP_DROP_MEMBERSHIP : constant := 36; -- Leave a multicast group + IP_PKTINFO : constant := 8; -- Get datagram info ------------------- -- System limits --