Searched refs:UdpTransport (Results 1 – 1 of 1) sorted by relevance
102 class UdpTransport : public Transport { class105 static std::unique_ptr<UdpTransport> NewTransport(std::unique_ptr<Socket> socket,107 ~UdpTransport() override = default;115 explicit UdpTransport(std::unique_ptr<Socket> socket) : socket_(std::move(socket)) {} in UdpTransport() function in udp::UdpTransport139 DISALLOW_COPY_AND_ASSIGN(UdpTransport);142 std::unique_ptr<UdpTransport> UdpTransport::NewTransport(std::unique_ptr<Socket> socket, in NewTransport()144 std::unique_ptr<UdpTransport> transport(new UdpTransport(std::move(socket))); in NewTransport()153 bool UdpTransport::InitializeProtocol(std::string* error) { in InitializeProtocol()207 ssize_t UdpTransport::SendData(Id id, const uint8_t* tx_data, size_t tx_length, uint8_t* rx_data, in SendData()253 ssize_t UdpTransport::SendSinglePacketHelper( in SendSinglePacketHelper()[all …]