Home
last modified time | relevance | path

Searched refs:tcp (Results 1 – 12 of 12) sorted by relevance

/openthread-latest/src/cli/
DREADME_TCP.md16 > tcp init
17 > tcp listen :: 30000
27 > tcp init
28 > tcp connect fe80:0:0:0:a8df:580a:860:ffa4 30000
29 > tcp send hello
34 After running the `tcp connect` command on node 2, you should see a printout on node 2 similar to b…
47 After running the `tcp send` command on node 2, you should see a printout on node 1 similar to belo…
76 > tcp abort
88 > tcp benchmark run
96 … benchmark is ongoing. This command is used for test scripts which automate the tcp benchmark test.
[all …]
DREADME.md124 - [tcp](README_TCP.md)
1353 To set protocol effectively to tcp `OPENTHREAD_CONFIG_DNS_CLIENT_OVER_TCP_ENABLE` is required.
1356 > dns config fd00::1 1234 5000 2 0 srv_txt_sep tcp
1366 TransportProtocol: tcp
1409 To use tcp, `OPENTHREAD_CONFIG_DNS_CLIENT_OVER_TCP_ENABLE` is required.
/openthread-latest/third_party/mbedtls/repo/programs/fuzz/
DREADME.md52 * Extract tcp payloads, for instance with tshark : `tshark -Tfields -e tcp.dstport -e tcp.payload -…
56 Here is an example of dummy.py for extracting payload from client to server (if we used `tcp.dstpor…
/openthread-latest/third_party/tcplp/bsdtcp/cc/
Dcc_module.h58 #define CCV(ccv, what) (ccv)->ccvc.tcp->what
/openthread-latest/third_party/tcplp/bsdtcp/
Dcc.h81 struct tcpcb *tcp; member
Dtcp_subr.c109 tp->ccv->ccvc.tcp = tp; in initialize_tcb()
/openthread-latest/src/core/net/
Dtcp6.cpp991 Tcp &tcp = listener.Get<Tcp>(); in tcplp_sys_accept_ready() local
1003 VerifyOrExit(tcp.IsInitialized(listener) && !listener.IsClosed()); in tcplp_sys_accept_ready()
1017 VerifyOrExit(tcp.IsInitialized(endpoint) && endpoint.IsClosed()); in tcplp_sys_accept_ready()
1042 Tcp &tcp = endpoint.Get<Tcp>(); in tcplp_sys_accepted_connection() local
1053 if (!tcp.IsInitialized(endpoint) || endpoint.IsClosed()) in tcplp_sys_accepted_connection()
/openthread-latest/tests/toranj/ncp/
Dwpan.py470 def permit_join(self, duration_sec=None, port=None, udp=True, tcp=True): argument
471 if not udp and not tcp: # incorrect use!
474 if udp and not tcp:
476 if tcp and not udp:
/openthread-latest/include/openthread/
DBUILD.gn124 "tcp.h",
/openthread-latest/tools/cp-caps/
DREADME.md73 DUT_ADB_TCP=<device_ip> Connect to the DUT via adb tcp
/openthread-latest/tests/toranj/
DREADME_NCP.md136 node.permit_join(duration_sec=None, port=None, udp=True, tcp=True)
/openthread-latest/etc/cmake/
Doptions.cmake201 …n(OT_DNS_CLIENT_OVER_TCP OPENTHREAD_CONFIG_DNS_CLIENT_OVER_TCP_ENABLE "Enable dns query over tcp")