diff --git a/src/asyncudplistener.h b/src/asyncudplistener.h index df4ee96..68a4cab 100644 --- a/src/asyncudplistener.h +++ b/src/asyncudplistener.h @@ -23,14 +23,14 @@ using pbufUniquePtr = std::unique_ptr; struct UdpPacketWrapper { - //UdpPacketWrapper(pbufUniquePtr &&pb, const ip_addr_t *addr, uint16_t port, struct netif * netif); - ~UdpPacketWrapper() = default; +// UdpPacketWrapper(pbufUniquePtr &&pb, const ip_addr_t *addr, uint16_t port, struct netif * netif); +// ~UdpPacketWrapper() = default; - UdpPacketWrapper(UdpPacketWrapper &&other) = default; - UdpPacketWrapper(const UdpPacketWrapper &other) = delete; +// UdpPacketWrapper(UdpPacketWrapper &&other) = default; +// UdpPacketWrapper(const UdpPacketWrapper &other) = delete; - UdpPacketWrapper &operator=(UdpPacketWrapper &&other) = default; - UdpPacketWrapper &operator=(const UdpPacketWrapper &other) = delete; +// UdpPacketWrapper &operator=(UdpPacketWrapper &&other) = default; +// UdpPacketWrapper &operator=(const UdpPacketWrapper &other) = delete; auto data() const { return _data; }