| 224 | } |
| 225 | |
| 226 | void udp_remove_safe(struct udp_pcb *udpPCB) |
| 227 | { |
| 228 | LwipMsgRecord msg = { |
| 229 | .udpPCB = udpPCB, |
| 230 | }; |
| 231 | tcpip_api_call(udp_remove_INLWIP, &msg.call); |
| 232 | } |
| 233 | |
| 234 | static err_t udp_sendto_INLWIP(struct tcpip_api_call_data *tcpMsg) |
| 235 | { |
no outgoing calls
no test coverage detected