| 75 | } |
| 76 | |
| 77 | UDPSocket::UDPSocket(int type, int protocol) : IPSocket(type, protocol){ |
| 78 | assert(type == DatagramSocket); |
| 79 | } |
| 80 | |
| 81 | int64_t UDPSocket::IPReceiveFrom(void* buffer, size_t len){ |
| 82 | return -ENOSYS; |
nothing calls this directly
no outgoing calls
no test coverage detected