Home
last modified time | relevance | path

Searched refs:otTcpEndpoint (Results 1 – 10 of 10) sorted by relevance

/openthread-latest/include/openthread/
Dtcp.h67 struct otTcpEndpoint;
68 typedef struct otTcpEndpoint otTcpEndpoint; typedef
76 typedef void (*otTcpEstablished)(otTcpEndpoint *aEndpoint);
90 typedef void (*otTcpSendDone)(otTcpEndpoint *aEndpoint, otLinkedBuffer *aData);
159 typedef void (*otTcpForwardProgress)(otTcpEndpoint *aEndpoint, size_t aInSendBuffer, size_t aBacklo…
179 typedef void (*otTcpReceiveAvailable)(otTcpEndpoint *aEndpoint,
211 typedef void (*otTcpDisconnected)(otTcpEndpoint *aEndpoint, otTcpDisconnectedReason aReason);
234 struct otTcpEndpoint struct
242 struct otTcpEndpoint *mNext; ///< A pointer to the next TCP endpoint (internal use only) argument
316 otTcpEndpoint *aEndpoint,
[all …]
Dtcp_ext.h149 otError otTcpCircularSendBufferWrite(otTcpEndpoint *aEndpoint,
219 otTcpEndpoint *mEndpoint;
/openthread-latest/src/core/api/
Dtcp_api.cpp43 otTcpEndpoint *aEndpoint, in otTcpEndpointInitialize()
49 otInstance *otTcpEndpointGetInstance(otTcpEndpoint *aEndpoint) { return &AsCoreType(aEndpoint).GetI… in otTcpEndpointGetInstance()
51 void *otTcpEndpointGetContext(otTcpEndpoint *aEndpoint) { return AsCoreType(aEndpoint).GetContext()… in otTcpEndpointGetContext()
53 const otSockAddr *otTcpGetLocalAddress(const otTcpEndpoint *aEndpoint) in otTcpGetLocalAddress()
58 const otSockAddr *otTcpGetPeerAddress(const otTcpEndpoint *aEndpoint) in otTcpGetPeerAddress()
63 otError otTcpBind(otTcpEndpoint *aEndpoint, const otSockAddr *aSockName) in otTcpBind()
68 otError otTcpConnect(otTcpEndpoint *aEndpoint, const otSockAddr *aSockName, uint32_t aFlags) in otTcpConnect()
73 otError otTcpSendByReference(otTcpEndpoint *aEndpoint, otLinkedBuffer *aBuffer, uint32_t aFlags) in otTcpSendByReference()
78 otError otTcpSendByExtension(otTcpEndpoint *aEndpoint, size_t aNumBytes, uint32_t aFlags) in otTcpSendByExtension()
83 otError otTcpReceiveByReference(otTcpEndpoint *aEndpoint, const otLinkedBuffer **aBuffer) in otTcpReceiveByReference()
[all …]
Dtcp_ext_api.cpp56 otError otTcpCircularSendBufferWrite(otTcpEndpoint *aEndpoint, in otTcpCircularSendBufferWrite()
92 otTcpEndpoint *endpoint = pair->mEndpoint; in otTcpMbedTlsSslSendCallback()
110 otTcpEndpoint *endpoint = pair->mEndpoint; in otTcpMbedTlsSslRecvCallback()
/openthread-latest/src/cli/
Dcli_tcp.hpp98 static void HandleTcpEstablishedCallback(otTcpEndpoint *aEndpoint);
99 static void HandleTcpSendDoneCallback(otTcpEndpoint *aEndpoint, otLinkedBuffer *aData);
100 …static void HandleTcpForwardProgressCallback(otTcpEndpoint *aEndpoint, size_t aInSendBuffer, size_…
101 static void HandleTcpReceiveAvailableCallback(otTcpEndpoint *aEndpoint,
105 …static void HandleTcpDisconnectedCallback(otTcpEndpoint *aEndpoint, otTcpDisconnectedReason aReaso…
108otTcpEndpoint **aAcceptInto);
110 otTcpEndpoint *aEndpoint,
113 void HandleTcpEstablished(otTcpEndpoint *aEndpoint);
114 void HandleTcpSendDone(otTcpEndpoint *aEndpoint, otLinkedBuffer *aData);
115 void HandleTcpForwardProgress(otTcpEndpoint *aEndpoint, size_t aInSendBuffer, size_t aBacklog);
[all …]
Dcli_tcp.cpp787 void TcpExample::HandleTcpEstablishedCallback(otTcpEndpoint *aEndpoint) in HandleTcpEstablishedCallback()
792 void TcpExample::HandleTcpSendDoneCallback(otTcpEndpoint *aEndpoint, otLinkedBuffer *aData) in HandleTcpSendDoneCallback()
797 void TcpExample::HandleTcpForwardProgressCallback(otTcpEndpoint *aEndpoint, size_t aInSendBuffer, s… in HandleTcpForwardProgressCallback()
803 void TcpExample::HandleTcpReceiveAvailableCallback(otTcpEndpoint *aEndpoint, in HandleTcpReceiveAvailableCallback()
812 void TcpExample::HandleTcpDisconnectedCallback(otTcpEndpoint *aEndpoint, otTcpDisconnectedReason aR… in HandleTcpDisconnectedCallback()
819otTcpEndpoint **aAcceptInto) in HandleTcpAcceptReadyCallback()
826 otTcpEndpoint *aEndpoint, in HandleTcpAcceptDoneCallback()
832 void TcpExample::HandleTcpEstablished(otTcpEndpoint *aEndpoint) in HandleTcpEstablished()
845 void TcpExample::HandleTcpSendDone(otTcpEndpoint *aEndpoint, otLinkedBuffer *aData) in HandleTcpSendDone()
884 void TcpExample::HandleTcpForwardProgress(otTcpEndpoint *aEndpoint, size_t aInSendBuffer, size_t aB… in HandleTcpForwardProgress()
[all …]
/openthread-latest/src/core/net/
Ddns_client.hpp829 static void HandleTcpEstablishedCallback(otTcpEndpoint *aEndpoint);
830 static void HandleTcpSendDoneCallback(otTcpEndpoint *aEndpoint, otLinkedBuffer *aData);
831 …static void HandleTcpDisconnectedCallback(otTcpEndpoint *aEndpoint, otTcpDisconnectedReason aReaso…
832 static void HandleTcpReceiveAvailableCallback(otTcpEndpoint *aEndpoint,
837 void HandleTcpEstablished(otTcpEndpoint *aEndpoint);
838 void HandleTcpSendDone(otTcpEndpoint *aEndpoint, otLinkedBuffer *aData);
839 void HandleTcpDisconnected(otTcpEndpoint *aEndpoint, otTcpDisconnectedReason aReason);
840 void HandleTcpReceiveAvailable(otTcpEndpoint *aEndpoint,
Dtcp6.hpp92 …class Endpoint : public otTcpEndpoint, public LinkedListEntry<Endpoint>, public GetProvider<Endpoi…
670 DefineCoreType(otTcpEndpoint, Ip6::Tcp::Endpoint);
Ddns_client.cpp1771 void Client::HandleTcpSendDone(otTcpEndpoint *aEndpoint, otLinkedBuffer *aData) in HandleTcpSendDone()
1781 void Client::HandleTcpSendDoneCallback(otTcpEndpoint *aEndpoint, otLinkedBuffer *aData) in HandleTcpSendDoneCallback()
1786 void Client::HandleTcpEstablished(otTcpEndpoint *aEndpoint) in HandleTcpEstablished()
1793 void Client::HandleTcpEstablishedCallback(otTcpEndpoint *aEndpoint) in HandleTcpEstablishedCallback()
1842 void Client::HandleTcpReceiveAvailable(otTcpEndpoint *aEndpoint, in HandleTcpReceiveAvailable()
1897 void Client::HandleTcpReceiveAvailableCallback(otTcpEndpoint *aEndpoint, in HandleTcpReceiveAvailableCallback()
1906 void Client::HandleTcpDisconnected(otTcpEndpoint *aEndpoint, otTcpDisconnectedReason aReason) in HandleTcpDisconnected()
1927 void Client::HandleTcpDisconnectedCallback(otTcpEndpoint *aEndpoint, otTcpDisconnectedReason aReaso… in HandleTcpDisconnectedCallback()
Dtcp6.cpp994 otTcpEndpoint *endpointPtr; in tcplp_sys_accept_ready()