| 282 | // UDPSocket Code |
| 283 | |
| 284 | UDPSocket::UDPSocket() throw(SocketException) : CommunicatingSocket(SOCK_DGRAM, |
| 285 | IPPROTO_UDP) { |
| 286 | setBroadcast(); |
| 287 | } |
| 288 | |
| 289 | UDPSocket::UDPSocket(unsigned short localPort) throw(SocketException) : |
| 290 | CommunicatingSocket(SOCK_DGRAM, IPPROTO_UDP) { |
nothing calls this directly
no outgoing calls
no test coverage detected