/net-tools-3.5.0/libcoap/examples/ |
D | coap-rd.txt.in | 17 *coap-rd* [*-A* addr] [*-g* group] [*-p* port] [*-v* num] 32 *-p* port:: 33 The 'port' on the given address the server will be waitung for connections. 34 The default port is 5683 if not given any other value. 45 Let the server listen on localhost (port 5683). 51 Quite the same, except listening port is '13011' (and not the default port
|
D | coap-server.txt.in | 17 *coap-server* [*-A* addr] [*-g* group] [*-p* port] [*-v* num] 32 *-p* port:: 33 The 'port' on the given address the server will be waitung for connections. 34 The default port is 5683 if not given any other value. 45 Let the server listen on localhost (port 5683). 51 Quite the same, except listening port is '13011' (and not the default port
|
D | coap-client.txt.in | 19 [*-o* file] [*-P* addr[:port]] [*-p* port] [*-s* duration] 59 *-p* port:: 60 The port to listen on. 101 *-P* addr[:port]:: 102 Address (and port) for proxy to use (automatically adds Proxy-Uri option 134 address '2001:db8:c001:f00d:221:2eff:ff00:2704' and port '5683'. Note that the 135 port '5683' is the default port and isn't really needed to append.
|
D | tiny.c | 66 get_context(const char *node, const char *port) { in get_context() argument 77 s = getaddrinfo(node, port, &hints, &result); in get_context()
|
/net-tools-3.5.0/tinydtls-0.8.2/examples/contiki/ |
D | dtls-client.c | 115 conn->rport = session->port; in send_to_peer() 216 session.port = UIP_UDP_BUF->srcport; in dtls_handle_read() 217 session.size = sizeof(session.addr) + sizeof(session.port); in dtls_handle_read() 222 PRINTF(":%d\n", uip_ntohs(session.port)); in dtls_handle_read() 279 dst->size = sizeof(dst->addr) + sizeof(dst->port); in init_dtls() 280 dst->port = UIP_HTONS(20220); in init_dtls() 284 udp_bind(client_conn, dst->port); in init_dtls() 288 PRINTF(":%d\n", uip_ntohs(dst->port)); in init_dtls()
|
D | dtls-server.c | 100 conn->rport = session->port; in send_to_peer() 197 session.port = UIP_UDP_BUF->srcport; in dtls_handle_read() 198 session.size = sizeof(session.addr) + sizeof(session.port); in dtls_handle_read()
|
/net-tools-3.5.0/libcoap/include/coap/ |
D | address.h | 26 uint16_t port; member 42 unsigned short port; member 46 ((A)->port == (B)->port \
|
/net-tools-3.5.0/libcoap/src/ |
D | coap_io_lwip.c | 20 target->port = packet->srcport; in coap_packet_copy_source() 52 static void coap_recv(void *arg, struct udp_pcb *upcb, struct pbuf *p, ip_addr_t *addr, u16_t port) in coap_recv() argument 59 packet->srcport = port; in coap_recv() 80 err = udp_bind(result->pcb, &addr->addr, addr->port); in coap_new_endpoint()
|
D | debug.c | 165 in_port_t port; in coap_print_addr() local 171 port = ntohs(addr->addr.sin.sin_port); in coap_print_addr() 180 port = ntohs(addr->addr.sin6.sin6_port); in coap_print_addr() 202 p += snprintf((char *)p, buf + len - p + 1, ":%d", port); in coap_print_addr() 237 p += snprintf((char *)p, buf + len - p + 1, ":%d", uip_htons(addr->port)); in coap_print_addr()
|
D | coap_io.c | 92 ep->addr.port = addr->port; in coap_new_endpoint() 93 udp_bind((struct uip_udp_conn *)ep->handle.conn, addr->port); in coap_new_endpoint() 334 &dst->addr, dst->port); in coap_network_send() 528 (*packet)->src.port = UIP_UDP_BUF->srcport; in coap_network_read() 530 (*packet)->dst.port = UIP_UDP_BUF->destport; in coap_network_read()
|
D | uri.c | 53 uri->port = COAP_DEFAULT_PORT; in coap_split_uri() 142 uri->port = uri_port; in coap_split_uri() 445 result->port = uri->port; in coap_clone_uri()
|
/net-tools-3.5.0/libcoap/examples/contiki/ |
D | coap-observer.c | 60 listen_addr.port = UIP_HTONS(COAP_DEFAULT_PORT); in init_coap() 84 uip_ntohs(listen_addr.port)); in init_coap() 130 dst.port = uip_htons(COAP_DEFAULT_PORT); in PROCESS_THREAD() 140 if (uri.port != COAP_DEFAULT_PORT) { in PROCESS_THREAD() 143 coap_encode_var_bytes(portbuf, uri.port), portbuf); in PROCESS_THREAD()
|
/net-tools-3.5.0/libcoap/tests/ |
D | test_uri.c | 28 CU_ASSERT(uri.port == COAP_DEFAULT_PORT); in t_parse_uri1() 51 CU_ASSERT(uri.port == 8000); in t_parse_uri2() 74 CU_ASSERT(uri.port == COAP_DEFAULT_PORT); in t_parse_uri3() 129 CU_ASSERT(uri.port == COAP_DEFAULT_PORT); in t_parse_uri6() 164 CU_ASSERT(uri.port == 5683); in t_parse_uri7() 221 CU_ASSERT(uri.port == COAP_DEFAULT_PORT); in t_parse_uri10() 256 CU_ASSERT(uri.port == COAP_DEFAULT_PORT); in t_parse_uri11() 294 CU_ASSERT(uri.port == 61616); in t_parse_uri12()
|
/net-tools-3.5.0/ |
D | net-capture.py | 26 port = 4242 variable 66 port = int(a) variable 85 sock.bind(('', port))
|
D | dnsmasq_nat.conf | 4 port=53
|
D | throughput-client.c | 342 int c, ret, fd, i = 0, timeout = -1, port = SERVER_PORT; in main() local 370 port = atoi(optarg); in main() 406 addr4_send.sin_port = htons(port); in main() 420 addr6_send.sin6_port = htons(port); in main()
|
D | echo-server.c | 373 int port = SERVER_PORT; in main() local 397 port = atoi(optarg); in main() 420 addr4_recv.sin_port = htons(port); in main() 432 addr6_recv.sin6_port = htons(port); in main() 442 maddr6.sin6_port = htons(port); in main() 447 maddr4.sin_port = htons(port); in main()
|
/net-tools-3.5.0/mbedtls-2.4.0/include/mbedtls/ |
D | net_sockets.h | 94 int mbedtls_net_connect( mbedtls_net_context *ctx, const char *host, const char *port, int proto ); 113 int mbedtls_net_bind( mbedtls_net_context *ctx, const char *bind_ip, const char *port, int proto );
|
/net-tools-3.5.0/tinydtls-0.8.2/ |
D | debug.c | 121 in_port_t port; in dsrv_print_addr() local 130 port = ntohs(addr->addr.sin.sin_port); in dsrv_print_addr() 139 port = ntohs(addr->addr.sin6.sin6_port); in dsrv_print_addr() 161 p += snprintf(p, buf + len - p + 1, ":%d", port); in dsrv_print_addr() 195 p += sprintf(p, ":%d", uip_htons(addr->port)); in dsrv_print_addr()
|
D | session.c | 41 && (A)->port == (B)->port \
|
/net-tools-3.5.0/mbedtls-2.4.0/yotta/data/example-hashing/ |
D | README.md | 17 * If your OS is Windows, please follow the installation instructions [for the serial port driver](h… 37 …example-hashing.bin` to your mbed board and wait until the LED next to the USB port stops blinking. 39 6. Start the serial terminal emulator and connect to the virtual serial port presented by FRDM-K64F…
|
/net-tools-3.5.0/docker/ |
D | mosquitto.conf | 8 port 1883
|
/net-tools-3.5.0/mbedtls-2.4.0/yotta/data/example-authcrypt/ |
D | README.md | 17 * If your OS is Windows, please follow the installation instructions [for the serial port driver](h… 37 …ample-authcrypt.bin` to your mbed board and wait until the LED next to the USB port stops blinking. 39 6. Start the serial terminal emulator and connect to the virtual serial port presented by FRDM-K64F…
|
/net-tools-3.5.0/libcoap/examples/lwip/ |
D | server-coap.c | 13 listenaddress.port = COAP_DEFAULT_PORT; in server_coap_init()
|
/net-tools-3.5.0/mbedtls-2.4.0/yotta/data/example-selftest/ |
D | README.md | 17 * If your OS is Windows, please follow the installation instructions [for the serial port driver](h… 37 …xample-selftest.bin` to your mbed board and wait until the LED next to the USB port stops blinking. 39 6. Start the serial terminal emulator and connect to the virtual serial port presented by FRDM-K64F…
|