| 112 | } |
| 113 | |
| 114 | void tcp_close_safe(struct tcp_pcb *tcpPCB) |
| 115 | { |
| 116 | LwipMsgRecord msg = { |
| 117 | .tcpPCB = tcpPCB, |
| 118 | }; |
| 119 | tcpip_api_call(tcp_close_INLWIP, &msg.call); |
| 120 | } |
| 121 | |
| 122 | static err_t tcp_output_INLWIP(struct tcpip_api_call_data *tcpMsg) |
| 123 | { |
no outgoing calls
no test coverage detected