<font size="2">
<p>Hi!</p>
<p>First, I&#39;m not much experienced with enet so sorry if I&#39;m wrong in some parts of the following discussion.</p>
<p>I&#39;ve readed the following post: &quot;How to send a broadcast message without connecting to any one?&quot;.</p>
<p>I have the same problem, a client that search servers in a LAN, wich are not registred as enet peers of a host.</p>
<p>So the default enet_host_broadcast function doesn&#39;t fit to my intentions. </p>
<p>I must send a broadcast packet through the LAN network, so I coded the following:</p>
<p> </p>
<p>int</p>
<p>enet_host_network_broadcast (ENetHost * host_origin, ENetPacket * packet)</p>
<p>{</p>
<p>ENetAddress target_address; </p>
<p>ENetBuffer buffer; </p>
<p>target_address.host = ENET_HOST_BROADCAST;</p>
<p>target_address.port = host_origin-&gt;address.port;</p>
<p>buffer.data = packet-&gt;data;</p>
<p>buffer.dataLength = sizeof(packet-&gt;data);</p>
<p></p>
<p>return enet_socket_send (host_origin-&gt;socket, &amp;target_address, &amp;buffer, 1);</p>
<p>}</p>
<p>In my &quot;FindServers&quot; client function, I use the new &quot;enet_host_network_broadcast&quot; enet function,</p>
<p>sending a FIND_SERVERS_REQUEST message. But this message is never read by the server.</p>
<p>Reading some posts in the mailing list I found a discussion about Multicast/Broadcast addresses (Giuseppe Greco giuseppe.greco at <a href="http://agamura.com">agamura.com</a> </p>
<p>Tue Sep 4 11:09:39 PDT 2007), that talks about broadcast datagrams discarding and shows the following code</p>
<p>static int</p>
<p>enet_protocol_handle_incoming_commands (</p>
<p>ENetHost * host, ENetEvent * event)</p>
<p>{</p>
<p>...</p>
<p>if (peer -&gt; state == ENET_PEER_STATE_DISCONNECTED ||</p>
<p>peer -&gt; state == ENET_PEER_STATE_ZOMBIE ||</p>
<p>(host -&gt; receivedAddress.host != peer -&gt; address.host &amp;&amp;</p>
<p>peer -&gt; address.host != ENET_HOST_BROADCAST))</p>
<p>return 0;</p>
<p>...</p>
<p>}</p>
<p>The questions are: </p>
<p>I will be able to receive the FIND_SERVERS_REQUEST message if I modify &quot;enet_protocol_handle_incoming_commands&quot; removing &quot;peer -&gt; address.host != ENET_HOST_BROADCAST&quot; condition?</p>
<p>Are there some kind of risks doing it?</p></font>