aboutsummaryrefslogtreecommitdiffhomepage
path: root/unix.c
diff options
context:
space:
mode:
authoreihrul <eihrul>2005-06-08 01:13:28 +0000
committereihrul <eihrul>2005-06-08 01:13:28 +0000
commitfd57f842d5e45fe8642cc0dd4ba73de359e0db37 (patch)
tree4d56250344590f7326663d5e2acd0788b787f847 /unix.c
parent59d5c26e3811e0ebfa4878e29886d8f4aadbdd6f (diff)
downloadenet-fd57f842d5e45fe8642cc0dd4ba73de359e0db37.tar.gz
enet-fd57f842d5e45fe8642cc0dd4ba73de359e0db37.zip
added broadcasting
Diffstat (limited to 'unix.c')
-rw-r--r--unix.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/unix.c b/unix.c
index b84d34b..c6eb823 100644
--- a/unix.c
+++ b/unix.c
@@ -128,7 +128,8 @@ ENetSocket
enet_socket_create (ENetSocketType type, const ENetAddress * address)
{
ENetSocket newSocket = socket (PF_INET, type == ENET_SOCKET_TYPE_DATAGRAM ? SOCK_DGRAM : SOCK_STREAM, 0);
- int receiveBufferSize = ENET_HOST_RECEIVE_BUFFER_SIZE;
+ int receiveBufferSize = ENET_HOST_RECEIVE_BUFFER_SIZE,
+ allowBroadcasting = 1;
#ifndef HAS_FCNTL
int nonBlocking = 1;
#endif
@@ -146,6 +147,7 @@ enet_socket_create (ENetSocketType type, const ENetAddress * address)
#endif
setsockopt (newSocket, SOL_SOCKET, SO_RCVBUF, (char *) & receiveBufferSize, sizeof (int));
+ setsockopt (newSocket, SOL_SOCKET, SO_BROADCAST, (char *) & allowBroadcasting, sizeof (int));
}
if (address == NULL)