terraria-cpp2il-methodrecon v1.4.4.9
Terraria mobile dump, with reconstructed method body. Dump with CallAnalysis: https://infinitynichto.github.io/terraria-cpp2il
Loading...
Searching...
No Matches

◆ CheckForBroadcast()

void System.Net.Sockets.UdpClient.CheckForBroadcast ( IPAddress ipAddress)
inlineprivate

Definition at line 103 of file UdpClient.cs.

104 {
105 if (this.m_ClientSocket != null && !this.m_IsBroadcast)
106 {
107 bool flag = UdpClient.IsBroadcast(ipAddress);
109 this.m_IsBroadcast = true;
110 clientSocket.SetSocketOption(SocketOptionLevel.Socket, SocketOptionName.Broadcast, 1);
111 return;
112 }
113 }
class f__AnonymousType0<< Count > j__TPar
void SetSocketOption(SocketOptionLevel optionLevel, SocketOptionName optionName, int optionValue, bool silent)
Definition Socket.cs:500

References System.Net.Sockets.UdpClient.IsBroadcast(), j__TPar, System.Net.Sockets.UdpClient.m_ClientSocket, System.Net.Sockets.UdpClient.m_IsBroadcast, and System.Net.Sockets.Socket.SetSocketOption().