Home
last modified time | relevance | path

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

/openthread-3.7.0/include/openthread/
Dtcp.h70 struct otTcpEndpoint;
71 typedef struct otTcpEndpoint otTcpEndpoint; typedef
80 typedef void (*otTcpEstablished)(otTcpEndpoint *aEndpoint);
95 typedef void (*otTcpSendDone)(otTcpEndpoint *aEndpoint, otLinkedBuffer *aData);
165 typedef void (*otTcpForwardProgress)(otTcpEndpoint *aEndpoint, size_t aInSendBuffer, size_t aBacklo…
186 typedef void (*otTcpReceiveAvailable)(otTcpEndpoint *aEndpoint,
219 typedef void (*otTcpDisconnected)(otTcpEndpoint *aEndpoint, otTcpDisconnectedReason aReason);
243 struct otTcpEndpoint struct
251 struct otTcpEndpoint *mNext; ///< A pointer to the next TCP endpoint (internal use only) argument
329 otTcpEndpoint *aEndpoint,
[all …]
Dtcp_ext.h153 otError otTcpCircularSendBufferWrite(otTcpEndpoint *aEndpoint,
223 otTcpEndpoint *mEndpoint;
/openthread-3.7.0/src/core/api/
Dtcp_api.cpp46 otTcpEndpoint *aEndpoint, in otTcpEndpointInitialize()
52 otInstance *otTcpEndpointGetInstance(otTcpEndpoint *aEndpoint) { return &AsCoreType(aEndpoint).GetI… in otTcpEndpointGetInstance()
54 void *otTcpEndpointGetContext(otTcpEndpoint *aEndpoint) { return AsCoreType(aEndpoint).GetContext()… in otTcpEndpointGetContext()
56 const otSockAddr *otTcpGetLocalAddress(const otTcpEndpoint *aEndpoint) in otTcpGetLocalAddress()
61 const otSockAddr *otTcpGetPeerAddress(const otTcpEndpoint *aEndpoint) in otTcpGetPeerAddress()
66 otError otTcpBind(otTcpEndpoint *aEndpoint, const otSockAddr *aSockName) in otTcpBind()
71 otError otTcpConnect(otTcpEndpoint *aEndpoint, const otSockAddr *aSockName, uint32_t aFlags) in otTcpConnect()
76 otError otTcpSendByReference(otTcpEndpoint *aEndpoint, otLinkedBuffer *aBuffer, uint32_t aFlags) in otTcpSendByReference()
81 otError otTcpSendByExtension(otTcpEndpoint *aEndpoint, size_t aNumBytes, uint32_t aFlags) in otTcpSendByExtension()
86 otError otTcpReceiveByReference(otTcpEndpoint *aEndpoint, const otLinkedBuffer **aBuffer) in otTcpReceiveByReference()
[all …]
Dtcp_ext_api.cpp57 otError otTcpCircularSendBufferWrite(otTcpEndpoint *aEndpoint, in otTcpCircularSendBufferWrite()
93 otTcpEndpoint *endpoint = pair->mEndpoint; in otTcpMbedTlsSslSendCallback()
111 otTcpEndpoint *endpoint = pair->mEndpoint; in otTcpMbedTlsSslRecvCallback()
/openthread-3.7.0/src/cli/
Dcli_tcp.hpp101 static void HandleTcpEstablishedCallback(otTcpEndpoint *aEndpoint);
102 static void HandleTcpSendDoneCallback(otTcpEndpoint *aEndpoint, otLinkedBuffer *aData);
103 …static void HandleTcpForwardProgressCallback(otTcpEndpoint *aEndpoint, size_t aInSendBuffer, size_…
104 static void HandleTcpReceiveAvailableCallback(otTcpEndpoint *aEndpoint,
108 …static void HandleTcpDisconnectedCallback(otTcpEndpoint *aEndpoint, otTcpDisconnectedReason aReaso…
111otTcpEndpoint **aAcceptInto);
113 otTcpEndpoint *aEndpoint,
116 void HandleTcpEstablished(otTcpEndpoint *aEndpoint);
117 void HandleTcpSendDone(otTcpEndpoint *aEndpoint, otLinkedBuffer *aData);
118 void HandleTcpForwardProgress(otTcpEndpoint *aEndpoint, size_t aInSendBuffer, size_t aBacklog);
[all …]
Dcli_tcp.cpp785 void TcpExample::HandleTcpEstablishedCallback(otTcpEndpoint *aEndpoint) in HandleTcpEstablishedCallback()
790 void TcpExample::HandleTcpSendDoneCallback(otTcpEndpoint *aEndpoint, otLinkedBuffer *aData) in HandleTcpSendDoneCallback()
795 void TcpExample::HandleTcpForwardProgressCallback(otTcpEndpoint *aEndpoint, size_t aInSendBuffer, s… in HandleTcpForwardProgressCallback()
801 void TcpExample::HandleTcpReceiveAvailableCallback(otTcpEndpoint *aEndpoint, in HandleTcpReceiveAvailableCallback()
810 void TcpExample::HandleTcpDisconnectedCallback(otTcpEndpoint *aEndpoint, otTcpDisconnectedReason aR… in HandleTcpDisconnectedCallback()
817otTcpEndpoint **aAcceptInto) in HandleTcpAcceptReadyCallback()
824 otTcpEndpoint *aEndpoint, in HandleTcpAcceptDoneCallback()
830 void TcpExample::HandleTcpEstablished(otTcpEndpoint *aEndpoint) in HandleTcpEstablished()
843 void TcpExample::HandleTcpSendDone(otTcpEndpoint *aEndpoint, otLinkedBuffer *aData) in HandleTcpSendDone()
882 void TcpExample::HandleTcpForwardProgress(otTcpEndpoint *aEndpoint, size_t aInSendBuffer, size_t aB… in HandleTcpForwardProgress()
[all …]
/openthread-3.7.0/src/core/net/
Ddns_client.hpp870 static void HandleTcpEstablishedCallback(otTcpEndpoint *aEndpoint);
871 static void HandleTcpSendDoneCallback(otTcpEndpoint *aEndpoint, otLinkedBuffer *aData);
872 …static void HandleTcpDisconnectedCallback(otTcpEndpoint *aEndpoint, otTcpDisconnectedReason aReaso…
873 static void HandleTcpReceiveAvailableCallback(otTcpEndpoint *aEndpoint,
878 void HandleTcpEstablished(otTcpEndpoint *aEndpoint);
879 void HandleTcpSendDone(otTcpEndpoint *aEndpoint, otLinkedBuffer *aData);
880 void HandleTcpDisconnected(otTcpEndpoint *aEndpoint, otTcpDisconnectedReason aReason);
881 void HandleTcpReceiveAvailable(otTcpEndpoint *aEndpoint,
Dtcp6.hpp95 …class Endpoint : public otTcpEndpoint, public LinkedListEntry<Endpoint>, public GetProvider<Endpoi…
706 DefineCoreType(otTcpEndpoint, Ip6::Tcp::Endpoint);
Ddns_client.cpp1675 void Client::HandleTcpSendDone(otTcpEndpoint *aEndpoint, otLinkedBuffer *aData) in HandleTcpSendDone()
1685 void Client::HandleTcpSendDoneCallback(otTcpEndpoint *aEndpoint, otLinkedBuffer *aData) in HandleTcpSendDoneCallback()
1690 void Client::HandleTcpEstablished(otTcpEndpoint *aEndpoint) in HandleTcpEstablished()
1697 void Client::HandleTcpEstablishedCallback(otTcpEndpoint *aEndpoint) in HandleTcpEstablishedCallback()
1746 void Client::HandleTcpReceiveAvailable(otTcpEndpoint *aEndpoint, in HandleTcpReceiveAvailable()
1801 void Client::HandleTcpReceiveAvailableCallback(otTcpEndpoint *aEndpoint, in HandleTcpReceiveAvailableCallback()
1810 void Client::HandleTcpDisconnected(otTcpEndpoint *aEndpoint, otTcpDisconnectedReason aReason) in HandleTcpDisconnected()
1831 void Client::HandleTcpDisconnectedCallback(otTcpEndpoint *aEndpoint, otTcpDisconnectedReason aReaso… in HandleTcpDisconnectedCallback()
Dtcp6.cpp1007 otTcpEndpoint *endpointPtr; in tcplp_sys_accept_ready()