g-soccon-linux-ppc.ads: Add new constants SO_REUSEPORT and IP_PKTINFO.
authorAndreas Jaeger <aj@suse.de>
Tue, 1 Apr 2008 15:42:11 +0000 (17:42 +0200)
committerAndreas Jaeger <aj@gcc.gnu.org>
Tue, 1 Apr 2008 15:42:11 +0000 (17:42 +0200)
2008-04-01  Andreas Jaeger  <aj@suse.de>

        * g-soccon-linux-ppc.ads: Add new constants SO_REUSEPORT and
        IP_PKTINFO.

From-SVN: r133792

gcc/ada/ChangeLog
gcc/ada/g-soccon-linux-ppc.ads

index 143601c902ff97625759eaeae9dcbaae0065bd53..8fc1b0d205a1a4c0dce1c2c46c4a50e0864463b2 100644 (file)
@@ -1,3 +1,8 @@
+2008-04-01  Andreas Jaeger  <aj@suse.de>
+
+       * g-soccon-linux-ppc.ads: Add new constants SO_REUSEPORT and
+       IP_PKTINFO.
+
 2008-03-31  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
 
        * g-table.adb, g-tasloc.adb, g-traceb.ads,
index 52bd506226432f6eb87a57e6d67f9ef6ccae2722..4ae8556f48ec4d3aa24794f9abbbc4a1c31bc919 100644 (file)
@@ -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 --