/Zephyr-4.1.0/subsys/net/lib/mqtt_sn/ |
D | mqtt_sn.c | 136 struct mqtt_sn_gateway *gw; in encode_and_send() local 138 gw = SYS_SLIST_PEEK_HEAD_CONTAINER(&client->gateway, gw, next); in encode_and_send() 139 if (gw == NULL || gw->addr_len == 0) { in encode_and_send() 144 err = client->transport->sendto(client, client->tx.data, client->tx.len, gw->addr, in encode_and_send() 145 gw->addr_len); in encode_and_send() 324 static void mqtt_sn_gw_destroy(struct mqtt_sn_client *client, struct mqtt_sn_gateway *gw) in mqtt_sn_gw_destroy() argument 326 LOG_DBG("Destroying gateway %d", gw->gw_id); in mqtt_sn_gw_destroy() 327 sys_slist_find_and_remove(&client->gateway, &gw->next); in mqtt_sn_gw_destroy() 328 k_mem_slab_free(&gateways, (void *)gw); in mqtt_sn_gw_destroy() 333 struct mqtt_sn_gateway *gw; in mqtt_sn_gw_destroy_all() local [all …]
|
/Zephyr-4.1.0/subsys/net/lib/shell/ |
D | route.c | 119 struct in6_addr gw = {0}; in cmd_net_ip6_route_add() local 144 if (net_addr_pton(AF_INET6, argv[3], &gw)) { in cmd_net_ip6_route_add() 150 &gw, NET_IPV6_ND_INFINITE_LIFETIME, in cmd_net_ip6_route_add()
|
D | iface.c | 547 net_sprint_ipv4_addr(&ipv4->gw)); in iface_cb()
|
/Zephyr-4.1.0/samples/net/dhcpv4_client/src/ |
D | main.c | 68 &iface->config.ip.ipv4->gw, in handler()
|
/Zephyr-4.1.0/tests/net/arp/src/ |
D | main.c | 330 struct in_addr gw = { { { 192, 0, 2, 42 } } }; in ZTEST() local 338 net_if_ipv4_set_gw(iface, &gw); in ZTEST() 468 (uint8_t *)&iface->config.ip.ipv4->gw)) { in ZTEST() 471 net_sprint_ipv4_addr(&iface->config.ip.ipv4->gw)); in ZTEST()
|
/Zephyr-4.1.0/tests/boards/espressif/ethernet/src/ |
D | main.c | 50 net_addr_ntop(AF_INET, &iface->config.ip.ipv4->gw, buf, sizeof(buf))); in ipv4_event()
|
/Zephyr-4.1.0/doc/connectivity/networking/ |
D | native_sim_setup.rst | 157 ``--ipv4-gw=<gateway>`` and ``--ipv4-nm=<netmask>``. 170 ./zephyr.exe --eth-if=zeth2 --ipv4-addr=192.0.2.2 --ipv4-gw=192.0.0.1
|
/Zephyr-4.1.0/samples/net/dns_resolve/src/ |
D | main.c | 194 &iface->config.ip.ipv4->gw, in print_dhcpv4_addr()
|
/Zephyr-4.1.0/drivers/wifi/esp_at/ |
D | esp.h | 227 struct in_addr gw; member
|
D | esp.c | 634 net_addr_pton(AF_INET, ip, &dev->gw); in MODEM_CMD_DEFINE() 674 net_if_ipv4_set_gw(dev->net_iface, &dev->gw); in esp_ip_addr_work()
|
/Zephyr-4.1.0/tests/net/ip-addr/src/ |
D | main.c | 480 struct in_addr gw = { { { 192, 168, 0, 42 } } }; in ZTEST() local 569 net_if_ipv4_set_gw(iface, &gw); in ZTEST()
|
/Zephyr-4.1.0/subsys/net/lib/config/ |
D | init.c | 90 net_addr_ntop(AF_INET, &iface->config.ip.ipv4->gw, in print_dhcpv4_info()
|
/Zephyr-4.1.0/subsys/net/ip/ |
D | net_if.c | 4150 struct in_addr gw = { 0 }; in net_if_ipv4_get_gw() local 4162 gw = iface->config.ip.ipv4->gw; in net_if_ipv4_get_gw() 4166 return gw; in net_if_ipv4_get_gw() 4169 void net_if_ipv4_set_gw(struct net_if *iface, const struct in_addr *gw) in net_if_ipv4_set_gw() argument 4181 net_ipaddr_copy(&iface->config.ip.ipv4->gw, gw); in net_if_ipv4_set_gw() 4187 const struct in_addr *gw) in z_impl_net_if_ipv4_set_gw_by_index() argument 4196 net_if_ipv4_set_gw(iface, gw); in z_impl_net_if_ipv4_set_gw_by_index() 4203 const struct in_addr *gw) in z_vrfy_net_if_ipv4_set_gw_by_index() argument 4213 K_OOPS(k_usermode_from_copy(&gw_addr, (void *)gw, sizeof(gw_addr))); in z_vrfy_net_if_ipv4_set_gw_by_index()
|
/Zephyr-4.1.0/include/zephyr/net/ |
D | net_if.h | 483 struct in_addr gw; member 2728 void net_if_ipv4_set_gw(struct net_if *iface, const struct in_addr *gw); 2738 __syscall bool net_if_ipv4_set_gw_by_index(int index, const struct in_addr *gw);
|
/Zephyr-4.1.0/subsys/net/l2/ethernet/ |
D | arp.c | 387 addr = &ipv4->gw; in net_arp_prepare()
|
/Zephyr-4.1.0/subsys/net/lib/dhcpv4/ |
D | dhcpv4_server.c | 524 buf, buflen, &ctx->iface->config.ip.ipv4->gw); in dhcpv4_encode_requested_params()
|
/Zephyr-4.1.0/drivers/wifi/nxp/ |
D | nxp_wifi_drv.c | 578 ap_addr4->gw = ap_addr4->address; in nxp_wifi_start_ap()
|