Home
last modified time | relevance | path

Searched refs:udpSocket (Results 1 – 2 of 2) sorted by relevance

/openbmc/phosphor-net-ipmid/
H A Dsd_event_loop.cpp24 auto channelPtr = std::make_shared<udpsocket::Channel>(udpSocket); in handleRmcpPacket()
39 udpSocket->async_wait( in startRmcpReceive()
179 udpSocket = std::make_shared<boost::asio::ip::udp::socket>( in setupSocket()
187 udpSocket = std::make_shared<boost::asio::ip::udp::socket>(*io); in setupSocket()
188 udpSocket->open(ep.protocol()); in setupSocket()
190 udpSocket->set_option( in setupSocket()
192 udpSocket->bind(ep); in setupSocket()
197 if ((::getsockopt(udpSocket->native_handle(), SOL_SOCKET, SO_BINDTODEVICE, in setupSocket()
206 if ((::setsockopt(udpSocket->native_handle(), SOL_SOCKET, in setupSocket()
219 ::setsockopt(udpSocket->native_handle(), IPPROTO_IP, IP_PKTINFO, in setupSocket()
[all …]
H A Dsd_event_loop.hpp109 std::shared_ptr<boost::asio::ip::udp::socket> udpSocket = nullptr; member in eventloop::EventLoop