Construct a UDP socket with the given local port and address.
Definition at line 296 of file PracticalSocket.cpp. 00297 : CommunicatingSocket(SOCK_DGRAM, IPPROTO_UDP) { 00298 setLocalAddressAndPort(localAddress, localPort); 00299 setBroadcast(); 00300 }
|