Home
last modified time | relevance | path

Searched refs:aPeerSockAddr (Results 1 – 11 of 11) sorted by relevance

/openthread-latest/src/core/net/
Ddns_dso.hpp63 …n "C" otPlatDsoConnection *otPlatDsoAccept(otInstance *aInstance, const otSockAddr *aPeerSockAddr);
74 …riend otPlatDsoConnection *otPlatDsoAccept(otInstance *aInstance, const otSockAddr *aPeerSockAddr);
388 const Ip6::SockAddr &aPeerSockAddr,
769 … bool Matches(const Ip6::SockAddr &aPeerSockAddr) const { return mPeerSockAddr == aPeerSockAddr; } in Matches()
807 typedef Connection *(*AcceptHandler)(Instance &aInstance, const Ip6::SockAddr &aPeerSockAddr);
837 Connection *FindClientConnection(const Ip6::SockAddr &aPeerSockAddr);
847 Connection *FindServerConnection(const Ip6::SockAddr &aPeerSockAddr);
900 Connection *AcceptConnection(const Ip6::SockAddr &aPeerSockAddr);
Ddns_dso.cpp53 …rn "C" otPlatDsoConnection *otPlatDsoAccept(otInstance *aInstance, const otSockAddr *aPeerSockAddr) in otPlatDsoAccept() argument
55 return AsCoreType(aInstance).Get<Dso>().AcceptConnection(AsCoreType(aPeerSockAddr)); in otPlatDsoAccept()
77 const Ip6::SockAddr &aPeerSockAddr, in Connection() argument
84 , mPeerSockAddr(aPeerSockAddr) in Connection()
1444 Dso::Connection *Dso::FindClientConnection(const Ip6::SockAddr &aPeerSockAddr) in FindClientConnection() argument
1446 return mClientConnections.FindMatching(aPeerSockAddr); in FindClientConnection()
1449 Dso::Connection *Dso::FindServerConnection(const Ip6::SockAddr &aPeerSockAddr) in FindServerConnection() argument
1451 return mServerConnections.FindMatching(aPeerSockAddr); in FindServerConnection()
1454 Dso::Connection *Dso::AcceptConnection(const Ip6::SockAddr &aPeerSockAddr) in AcceptConnection() argument
1459 connection = mAcceptHandler(GetInstance(), aPeerSockAddr); in AcceptConnection()
[all …]
/openthread-latest/examples/platforms/simulation/
Ddso_transport.c41 void otPlatDsoConnect(otPlatDsoConnection *aConnection, const otSockAddr *aPeerSockAddr) in otPlatDsoConnect() argument
44 OT_UNUSED_VARIABLE(aPeerSockAddr); in otPlatDsoConnect()
Dtrel.c255 const otSockAddr *aPeerSockAddr, in otPlatTrelNotifyPeerSocketAddressDifference() argument
259 OT_UNUSED_VARIABLE(aPeerSockAddr); in otPlatTrelNotifyPeerSocketAddressDifference()
/openthread-latest/include/openthread/platform/
Ddso_transport.h94 extern otPlatDsoConnection *otPlatDsoAccept(otInstance *aInstance, const otSockAddr *aPeerSockAddr);
105 void otPlatDsoConnect(otPlatDsoConnection *aConnection, const otSockAddr *aPeerSockAddr);
Dtrel.h152 const otSockAddr *aPeerSockAddr,
/openthread-latest/src/posix/platform/
Dtrel.cpp432 OT_TOOL_WEAK void trelDnssdNotifyPeerSocketAddressDifference(const otSockAddr *aPeerSockAddr, in trelDnssdNotifyPeerSocketAddressDifference() argument
447 OT_UNUSED_VARIABLE(aPeerSockAddr); in trelDnssdNotifyPeerSocketAddressDifference()
571 const otSockAddr *aPeerSockAddr, in otPlatTrelNotifyPeerSocketAddressDifference() argument
576 trelDnssdNotifyPeerSocketAddressDifference(aPeerSockAddr, aRxSockAddr); in otPlatTrelNotifyPeerSocketAddressDifference()
/openthread-latest/tests/unit/
Dtest_dso.cpp119 const Ip6::SockAddr &aPeerSockAddr) in Connection() argument
120 : Dso::Connection(aInstance, aPeerSockAddr, sCallbacks) in Connection()
376 void otPlatDsoConnect(otPlatDsoConnection *aConnection, const otSockAddr *aPeerSockAddr) in otPlatDsoConnect() argument
380 const Ip6::SockAddr &peerSockAddr = AsCoreType(aPeerSockAddr); in otPlatDsoConnect()
393 …onn = static_cast<Connection *>(otPlatDsoAccept(otPlatDsoGetInstance(aConnection), aPeerSockAddr)); in otPlatDsoConnect()
476 Dso::Connection *AcceptConnection(Instance &aInstance, const Ip6::SockAddr &aPeerSockAddr) in AcceptConnection() argument
482 Log(" AcceptConnection(peer:0x%04x)", aPeerSockAddr.GetPort()); in AcceptConnection()
486 if (conn->GetLocalSockAddr() == aPeerSockAddr) in AcceptConnection()
Dtest_platform.cpp622 …_TOOL_WEAK void otPlatDsoConnect(otPlatDsoConnection *aConnection, const otSockAddr *aPeerSockAddr) in otPlatDsoConnect() argument
625 OT_UNUSED_VARIABLE(aPeerSockAddr); in otPlatDsoConnect()
/openthread-latest/src/core/radio/
Dtrel_interface.cpp117 void Interface::NotifyPeerSocketAddressDifference(const Ip6::SockAddr &aPeerSockAddr, const Ip6::So… in NotifyPeerSocketAddressDifference() argument
119 otPlatTrelNotifyPeerSocketAddressDifference(&GetInstance(), &aPeerSockAddr, &aRxSockAddr); in NotifyPeerSocketAddressDifference()
Dtrel_interface.hpp275 …void NotifyPeerSocketAddressDifference(const Ip6::SockAddr &aPeerSockAddr, const Ip6::SockAddr &aR…