Home
last modified time | relevance | path

Searched refs:proto (Results 1 – 9 of 9) sorted by relevance

/openthread-3.4.0/third_party/mbedtls/repo/include/mbedtls/
Dnet_sockets.h127 int mbedtls_net_connect( mbedtls_net_context *ctx, const char *host, const char *port, int proto );
147 int mbedtls_net_bind( mbedtls_net_context *ctx, const char *bind_ip, const char *port, int proto );
/openthread-3.4.0/tools/harness-simulation/harness/
Dinstall.bat35 xcopy /E /Y ..\posix\sniffer_sim\proto %THREADDIR%\Thread_Harness\simulation\Sniffer\proto
43 …%BASEDIR% --python_out=%BASEDIR% --grpc_python_out=%BASEDIR% simulation/Sniffer/proto/sniffer.proto
/openthread-3.4.0/third_party/mbedtls/repo/library/
Dnet_sockets.c175 const char *port, int proto ) in mbedtls_net_connect() argument
186 hints.ai_socktype = proto == MBEDTLS_NET_PROTO_UDP ? SOCK_DGRAM : SOCK_STREAM; in mbedtls_net_connect()
187 hints.ai_protocol = proto == MBEDTLS_NET_PROTO_UDP ? IPPROTO_UDP : IPPROTO_TCP; in mbedtls_net_connect()
222 int mbedtls_net_bind( mbedtls_net_context *ctx, const char *bind_ip, const char *port, int proto ) in mbedtls_net_bind() argument
233 hints.ai_socktype = proto == MBEDTLS_NET_PROTO_UDP ? SOCK_DGRAM : SOCK_STREAM; in mbedtls_net_bind()
234 hints.ai_protocol = proto == MBEDTLS_NET_PROTO_UDP ? IPPROTO_UDP : IPPROTO_TCP; in mbedtls_net_bind()
270 if( proto == MBEDTLS_NET_PROTO_TCP ) in mbedtls_net_bind()
/openthread-3.4.0/tools/harness-simulation/posix/
Dinstall.sh48 …{SNIFFER_DIR}" --python_out="${SNIFFER_DIR}" --grpc_python_out="${SNIFFER_DIR}" proto/sniffer.proto
/openthread-3.4.0/tools/harness-simulation/posix/sniffer_sim/
Dsniffer.py45 from proto import sniffer_pb2
46 from proto import sniffer_pb2_grpc
/openthread-3.4.0/third_party/mbedtls/repo/tests/
Dcompat.sh1020 proto=UDP
1022 proto=TCP
1024 while ! lsof -a -n -b -i "$proto:$1" -p "$2" >/dev/null 2>/dev/null; do
Dssl-opt.sh592 proto=UDP
594 proto=TCP
598 SERVER_PIDS=$(lsof -a -n -b -i "$proto:$1" -F p)
/openthread-3.4.0/tools/harness-simulation/harness/Thread_Harness/Sniffer/
DSimSniffer.py48 from simulation.Sniffer.proto import sniffer_pb2
49 from simulation.Sniffer.proto import sniffer_pb2_grpc
/openthread-3.4.0/third_party/mbedtls/repo/
DChangeLog2861 * net_connect() and net_bind() have a new 'proto' argument to choose