Home
last modified time | relevance | path

Searched refs:port (Results 1 – 25 of 47) sorted by relevance

12

/net-tools-2.7.6/libcoap/examples/
Dcoap-rd.txt.in17 *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
Dcoap-server.txt.in17 *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
Dcoap-client.txt.in19 [*-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.
Dtiny.c66 get_context(const char *node, const char *port) { in get_context() argument
77 s = getaddrinfo(node, port, &hints, &result); in get_context()
/net-tools-2.7.6/tinydtls-0.8.2/examples/contiki/
Ddtls-client.c115 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()
Ddtls-server.c100 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-2.7.6/libcoap/include/coap/
Daddress.h26 uint16_t port; member
42 unsigned short port; member
46 ((A)->port == (B)->port \
/net-tools-2.7.6/libcoap/src/
Dcoap_io_lwip.c20 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()
Ddebug.c165 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()
Dcoap_io.c92 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()
Duri.c53 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-2.7.6/libcoap/examples/contiki/
Dcoap-observer.c60 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-2.7.6/libcoap/tests/
Dtest_uri.c28 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-2.7.6/
Dnet-capture.py26 port = 4242 variable
66 port = int(a) variable
85 sock.bind(('', port))
Dthroughput-client.c342 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()
Decho-server.c373 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()
Ddnsmasq.conf7 port=15353
/net-tools-2.7.6/mbedtls-2.4.0/include/mbedtls/
Dnet_sockets.h94 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-2.7.6/tinydtls-0.8.2/
Ddebug.c121 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()
Dsession.c41 && (A)->port == (B)->port \
/net-tools-2.7.6/mbedtls-2.4.0/yotta/data/example-hashing/
DREADME.md17 * 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-2.7.6/docker/
Dmosquitto.conf8 port 1883
/net-tools-2.7.6/mbedtls-2.4.0/yotta/data/example-authcrypt/
DREADME.md17 * 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-2.7.6/libcoap/examples/lwip/
Dserver-coap.c13 listenaddress.port = COAP_DEFAULT_PORT; in server_coap_init()
/net-tools-2.7.6/mbedtls-2.4.0/yotta/data/example-selftest/
DREADME.md17 * 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…

12