Home
last modified time | relevance | path

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

/openthread-latest/src/posix/platform/
Dinfra_if.cpp231 VerifyOrExit(mInfraIfIcmp6Socket >= 0, error = OT_ERROR_FAILED); in SendIcmp6Nd()
271 rval = sendmsg(mInfraIfIcmp6Socket, &msgHeader, 0); in SendIcmp6Nd()
497 if (mInfraIfIcmp6Socket != -1) in Deinit()
499 close(mInfraIfIcmp6Socket); in Deinit()
500 mInfraIfIcmp6Socket = -1; in Deinit()
523 VerifyOrExit(mInfraIfIcmp6Socket != -1); in Update()
525 FD_SET(mInfraIfIcmp6Socket, &aContext.mReadFdSet); in Update()
526 aContext.mMaxFd = OT_MAX(aContext.mMaxFd, mInfraIfIcmp6Socket); in Update()
622 rval = recvmsg(mInfraIfIcmp6Socket, &msg, 0); in ReceiveIcmp6Message()
813 if (mInfraIfIcmp6Socket != -1) in SetInfraNetifIcmp6SocketForBorderRouting()
[all …]
Dinfra_if.hpp239 int mInfraIfIcmp6Socket = -1; member in ot::Posix::InfraNetif