| 207 | } |
| 208 | |
| 209 | err_t udp_bind_safe(struct udp_pcb *udpPCB, const ip_addr_t *ipaddr, u16_t port) |
| 210 | { |
| 211 | LwipMsgRecord msg = { |
| 212 | .udpPCB = udpPCB, |
| 213 | .addr = *ipaddr, |
| 214 | .port = port |
| 215 | }; |
| 216 | tcpip_api_call(udp_bind_INLWIP, &msg.call); |
| 217 | return msg.err; |
| 218 | } |
| 219 | |
| 220 | static err_t udp_remove_INLWIP(struct tcpip_api_call_data *tcpMsg) |
| 221 | { |
no outgoing calls
no test coverage detected