Home
last modified time | relevance | path

Searched refs:otTcpListener (Results 1 – 5 of 5) sorted by relevance

/openthread-2.7.6/include/openthread/
Dtcp.h534 struct otTcpListener;
535 typedef struct otTcpListener otTcpListener; typedef
580 typedef otTcpIncomingConnectionAction (*otTcpAcceptReady)(otTcpListener * aListener,
599 typedef void (*otTcpAcceptDone)(otTcpListener *aListener, otTcpEndpoint *aEndpoint, const otSockAdd…
611 struct otTcpListener struct
613 struct otTcpListener *mNext; ///< A pointer to the next TCP listener (internal use only) argument
652 otError otTcpListenerInitialize(otInstance *aInstance, otTcpListener *aListener, otTcpListenerIniti…
663 otInstance *otTcpListenerGetInstance(otTcpListener *aListener);
674 void *otTcpListenerGetContext(otTcpListener *aListener);
687 otError otTcpListen(otTcpListener *aListener, const otSockAddr *aSockName);
[all …]
/openthread-2.7.6/src/cli/
Dcli_tcp.hpp102 static otTcpIncomingConnectionAction HandleTcpAcceptReadyCallback(otTcpListener * aListener,
105 static void HandleTcpAcceptDoneCallback(otTcpListener * aListener,
116 otTcpIncomingConnectionAction HandleTcpAcceptReady(otTcpListener * aListener,
119 …void HandleTcpAcceptDone(otTcpListener *aListener, otTcpEndpoint *aEndpoint, const otSockAddr *aPe…
140 otTcpListener mListener;
Dcli_tcp.cpp358 otTcpIncomingConnectionAction TcpExample::HandleTcpAcceptReadyCallback(otTcpListener * aListener, in HandleTcpAcceptReadyCallback()
366 void TcpExample::HandleTcpAcceptDoneCallback(otTcpListener * aListener, in HandleTcpAcceptDoneCallback()
488 otTcpIncomingConnectionAction TcpExample::HandleTcpAcceptReady(otTcpListener * aListener, in HandleTcpAcceptReady()
507 void TcpExample::HandleTcpAcceptDone(otTcpListener *aListener, otTcpEndpoint *aEndpoint, const otSo… in HandleTcpAcceptDone()
/openthread-2.7.6/src/core/api/
Dtcp_api.cpp150 otError otTcpListenerInitialize(otInstance *aInstance, otTcpListener *aListener, otTcpListenerIniti… in otTcpListenerInitialize()
157 otInstance *otTcpListenerGetInstance(otTcpListener *aListener) in otTcpListenerGetInstance()
164 void *otTcpListenerGetContext(otTcpListener *aListener) in otTcpListenerGetContext()
171 otError otTcpListen(otTcpListener *aListener, const otSockAddr *aSockName) in otTcpListen()
178 otError otTcpStopListening(otTcpListener *aListener) in otTcpStopListening()
185 otError otTcpListenerDeinitialize(otTcpListener *aListener) in otTcpListenerDeinitialize()
/openthread-2.7.6/src/core/net/
Dtcp6.hpp354 class Listener : public otTcpListener, public LinkedListEntry<Listener>