Searched refs:proto (Results 1 – 9 of 9) sorted by relevance
/openthread-3.4.0/third_party/mbedtls/repo/include/mbedtls/ |
D | net_sockets.h | 127 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/ |
D | install.bat | 35 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/ |
D | net_sockets.c | 175 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/ |
D | install.sh | 48 …{SNIFFER_DIR}" --python_out="${SNIFFER_DIR}" --grpc_python_out="${SNIFFER_DIR}" proto/sniffer.proto
|
/openthread-3.4.0/tools/harness-simulation/posix/sniffer_sim/ |
D | sniffer.py | 45 from proto import sniffer_pb2 46 from proto import sniffer_pb2_grpc
|
/openthread-3.4.0/third_party/mbedtls/repo/tests/ |
D | compat.sh | 1020 proto=UDP 1022 proto=TCP 1024 while ! lsof -a -n -b -i "$proto:$1" -p "$2" >/dev/null 2>/dev/null; do
|
D | ssl-opt.sh | 592 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/ |
D | SimSniffer.py | 48 from simulation.Sniffer.proto import sniffer_pb2 49 from simulation.Sniffer.proto import sniffer_pb2_grpc
|
/openthread-3.4.0/third_party/mbedtls/repo/ |
D | ChangeLog | 2861 * net_connect() and net_bind() have a new 'proto' argument to choose
|