Home
last modified time | relevance | path

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

/openthread-latest/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-latest/third_party/mbedtls/repo/library/
Dnet_sockets.c159 const char *port, int proto) in mbedtls_net_connect() argument
171 hints.ai_socktype = proto == MBEDTLS_NET_PROTO_UDP ? SOCK_DGRAM : SOCK_STREAM; in mbedtls_net_connect()
172 hints.ai_protocol = proto == MBEDTLS_NET_PROTO_UDP ? IPPROTO_UDP : IPPROTO_TCP; in mbedtls_net_connect()
205 int mbedtls_net_bind(mbedtls_net_context *ctx, const char *bind_ip, const char *port, int proto) in mbedtls_net_bind() argument
217 hints.ai_socktype = proto == MBEDTLS_NET_PROTO_UDP ? SOCK_DGRAM : SOCK_STREAM; in mbedtls_net_bind()
218 hints.ai_protocol = proto == MBEDTLS_NET_PROTO_UDP ? IPPROTO_UDP : IPPROTO_TCP; in mbedtls_net_bind()
252 if (proto == MBEDTLS_NET_PROTO_TCP) { in mbedtls_net_bind()
/openthread-latest/third_party/mbedtls/repo/include/mbedtls/
Dnet_sockets.h117 int mbedtls_net_connect(mbedtls_net_context *ctx, const char *host, const char *port, int proto);
137 int mbedtls_net_bind(mbedtls_net_context *ctx, const char *bind_ip, const char *port, int proto);
/openthread-latest/tools/harness-simulation/posix/
Dinstall.sh48 …{SNIFFER_DIR}" --python_out="${SNIFFER_DIR}" --grpc_python_out="${SNIFFER_DIR}" proto/sniffer.proto
/openthread-latest/tools/harness-simulation/posix/sniffer_sim/
Dsniffer.py45 from proto import sniffer_pb2
46 from proto import sniffer_pb2_grpc
/openthread-latest/third_party/mbedtls/repo/tests/
Dcompat.sh759 proto=UDP
761 proto=TCP
763 while ! lsof -a -n -b -i "$proto:$1" -p "$2" >/dev/null 2>/dev/null; do
Dssl-opt.sh1040 proto=UDP
1042 proto=TCP
1046 SERVER_PIDS=$(lsof -a -n -b -i "$proto:$1" -t)
/openthread-latest/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-latest/third_party/mbedtls/repo/
DChangeLog4456 * net_connect() and net_bind() have a new 'proto' argument to choose