/third_party/lwip/src/include/lwip/ |
H A D | udp.h | 61 struct udp_pcb; 71 * @param arg user supplied argument (udp_pcb.recv_arg) 72 * @param pcb the udp_pcb which received data 77 typedef void (*udp_recv_fn)(void *arg, struct udp_pcb *pcb, struct pbuf *p, 81 struct udp_pcb { struct 87 struct udp_pcb *next; 115 extern struct udp_pcb *udp_pcbs; 120 void set_udp_pcb_net_group(struct udp_pcb *pcb, struct net_group *group); 121 struct net_group *get_net_group_from_udp_pcb(struct udp_pcb *pcb); 123 struct udp_pcb * udp_ne [all...] |
H A D | snmp.h | 47 struct udp_pcb; 168 void mib2_udp_bind(struct udp_pcb *pcb); 169 void mib2_udp_unbind(struct udp_pcb *pcb);
|
H A D | api.h | 209 struct udp_pcb; 227 struct udp_pcb *udp;
|
/third_party/lwip/src/apps/snmp/ |
H A D | snmp_raw.c | 47 snmp_recv(void *arg, struct udp_pcb *pcb, struct pbuf *p, const ip_addr_t *addr, u16_t port) in snmp_recv() 59 return udp_sendto((struct udp_pcb *)handle, p, dst, port); in snmp_sendto() 65 struct udp_pcb *udp_pcb = (struct udp_pcb *)handle; in snmp_get_local_ip_for_dst() local 69 LWIP_UNUSED_ARG(udp_pcb); /* unused in case of IPV4 only configuration */ in snmp_get_local_ip_for_dst() 71 ip_route_get_local_ip(&udp_pcb->local_ip, dst, dst_if, dst_ip); in snmp_get_local_ip_for_dst() 91 struct udp_pcb *snmp_pcb = udp_new_ip_type(IPADDR_TYPE_ANY); in snmp_init()
|
H A D | snmp_mib2_udp.c | 122 struct udp_pcb *pcb; in udp_endpointTable_get_cell_value() 147 /* find udp_pcb with requested ip and port*/ in udp_endpointTable_get_cell_value() 167 struct udp_pcb *pcb; in udp_endpointTable_get_next_cell_instance_and_value() 226 udp_Table_get_cell_value_core(struct udp_pcb *pcb, const u32_t *column, union snmp_variant_value *value, u32_t *value_len) in udp_Table_get_cell_value_core() 251 struct udp_pcb *pcb; in udp_Table_get_cell_value() 262 /* find udp_pcb with requested ip and port*/ in udp_Table_get_cell_value() 281 struct udp_pcb *pcb; in udp_Table_get_next_cell_instance_and_value() 308 return udp_Table_get_cell_value_core((struct udp_pcb *)state.reference, column, value, value_len); in udp_Table_get_next_cell_instance_and_value()
|
/third_party/lwip/src/core/ |
H A D | udp.c | 45 /* @todo Check the use of '(struct udp_pcb).chksum_len_rx'! 81 struct udp_pcb *udp_pcbs; 84 void set_udp_pcb_net_group(struct udp_pcb *pcb, struct net_group *group) in set_udp_pcb_net_group() 89 struct net_group *get_net_group_from_udp_pcb(struct udp_pcb *pcb) in get_net_group_from_udp_pcb() 114 struct udp_pcb *pcb; in udp_new_port() 141 udp_input_local_match(struct udp_pcb *pcb, struct netif *inp, u8_t broadcast) in udp_input_local_match() 208 struct udp_pcb *pcb, *prev; 209 struct udp_pcb *uncon_pcb; 400 struct udp_pcb *mpcb; 493 udp_send(struct udp_pcb *pc [all...] |
H A D | dns.c | 290 static void dns_recv(void *s, struct udp_pcb *pcb, struct pbuf *p, const ip_addr_t *addr, u16_t port); 299 static struct udp_pcb *dns_pcbs[DNS_MAX_SOURCE_PORTS]; 958 static struct udp_pcb * 962 struct udp_pcb *pcb; in dns_alloc_random_port() 1263 dns_recv(void *arg, struct udp_pcb *pcb, struct pbuf *p, const ip_addr_t *addr, u16_t port) in dns_recv()
|
/third_party/lwip/test/unit/udp/ |
H A D | test_udp.c | 14 struct udp_pcb *pcb; 26 struct udp_pcb *pcb = udp_pcbs; in udp_remove_all() 27 struct udp_pcb *pcb2; in udp_remove_all() 137 struct udp_pcb* pcb; in START_TEST() 152 static void test_recv(void *arg, struct udp_pcb *pcb, struct pbuf *p, in test_recv() 215 struct udp_pcb *pcb1, *pcb2; in START_TEST() 220 struct udp_pcb *pcb_any; in START_TEST() 340 struct udp_pcb* pcb1; in START_TEST() 341 struct udp_pcb* pcb2; in START_TEST()
|
/third_party/lwip/src/apps/tftp/ |
H A D | tftp_server.c | 83 struct udp_pcb *upcb; 204 recv(void *arg, struct udp_pcb *upcb, struct pbuf *p, const ip_addr_t *addr, u16_t port) in recv() 401 struct udp_pcb *pcb = udp_new_ip_type(IPADDR_TYPE_ANY); in tftp_init()
|
/third_party/lwip/src/netif/ |
H A D | zepif.c | 90 struct udp_pcb *pcb; 108 zepif_udp_recv(void *arg, struct udp_pcb *pcb, struct pbuf *p, in zepif_udp_recv()
|
/third_party/libcoap/src/ |
H A D | coap_io_lwip.c | 147 coap_recvc(void *arg, struct udp_pcb *upcb, struct pbuf *p, in coap_recvc() 214 coap_recvs(void *arg, struct udp_pcb *upcb, struct pbuf *p, in coap_recvs() 383 struct udp_pcb *pcb; in coap_socket_connect_udp()
|
/third_party/lwip/src/include/netif/ppp/ |
H A D | pppol2tp.h | 171 struct udp_pcb *udp; /* UDP L2TP Socket */
|
/third_party/lwip/src/apps/netbiosns/ |
H A D | netbiosns.c | 239 static struct udp_pcb *netbiosns_pcb; 347 netbiosns_recv(void *arg, struct udp_pcb *upcb, struct pbuf *p, const ip_addr_t *addr, u16_t port) in netbiosns_recv()
|
/third_party/lwip/src/core/ipv6/ |
H A D | dhcp6.c | 130 static struct udp_pcb *dhcp6_pcb; 135 static void dhcp6_recv(void *arg, struct udp_pcb *pcb, struct pbuf *p, const ip_addr_t *addr, u16_t port); 698 dhcp6_recv(void *arg, struct udp_pcb *pcb, struct pbuf *p, const ip_addr_t *addr, u16_t port) in dhcp6_recv()
|
/third_party/lwip/src/include/lwip/priv/ |
H A D | memp_std.h | 46 LWIP_MEMPOOL(UDP_PCB, MEMP_NUM_UDP_PCB, sizeof(struct udp_pcb), "UDP_PCB")
|
/third_party/libcoap/include/coap3/ |
H A D | coap_io_internal.h | 36 struct udp_pcb *pcb;
|
/third_party/lwip/src/apps/sntp/ |
H A D | sntp.c | 227 static struct udp_pcb *sntp_pcb; 439 sntp_recv(void *arg, struct udp_pcb *pcb, struct pbuf *p, const ip_addr_t *addr, u16_t port) in sntp_recv()
|
/third_party/lwip/test/unit/etharp/ |
H A D | test_etharp.c | 145 struct udp_pcb* pcb; in START_TEST()
|
/third_party/lwip/src/netif/ppp/ |
H A D | pppol2tp.c | 80 static void pppol2tp_input(void *arg, struct udp_pcb *pcb, struct pbuf *p, const ip_addr_t *addr, u16_t port); 115 struct udp_pcb *udp; in pppol2tp_create() 345 static void pppol2tp_input(void *arg, struct udp_pcb *pcb, struct pbuf *p, const ip_addr_t *addr, u16_t port) { in pppol2tp_input()
|
/third_party/lwip/src/core/ipv4/ |
H A D | dhcp.c | 193 static struct udp_pcb *dhcp_pcb; 208 static void dhcp_recv(void *arg, struct udp_pcb *pcb, struct pbuf *p, const ip_addr_t *addr, u16_t port); 1823 dhcp_recv(void *arg, struct udp_pcb *pcb, struct pbuf *p, const ip_addr_t *addr, u16_t port)
|
/third_party/lwip/src/apps/mdns/ |
H A D | mdns.c | 104 static struct udp_pcb *mdns_pcb; 1853 mdns_recv(void *arg, struct udp_pcb *pcb, struct pbuf *p, const ip_addr_t *addr, u16_t port) in mdns_recv()
|
/third_party/lwip/src/api/ |
H A D | api_msg.c | 215 * @see udp.h (struct udp_pcb.recv) for parameters 218 recv_udp(void *arg, struct udp_pcb *pcb, struct pbuf *p,
|