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

2008-04-01  Andreas Jaeger  <aj@suse.de>

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

From-SVN: r133792
This commit is contained in:
Andreas Jaeger 2008-04-01 17:42:11 +02:00 committed by Andreas Jaeger
parent d4c32e1d76
commit 4d22f5b177
2 changed files with 7 additions and 0 deletions

View 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,

View 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 --