| 619 | // DatagramSocket members |
| 620 | |
| 621 | DatagramSocket::DatagramSocket(int af, int protocol) |
| 622 | { |
| 623 | if (!Create(af, protocol)) |
| 624 | throw SocketError("DatagramSocket"); |
| 625 | } |
| 626 | |
| 627 | bool DatagramSocket::SendTo( |
| 628 | const void* buffer, |
nothing calls this directly
no test coverage detected