| 1014 | } |
| 1015 | |
| 1016 | int |
| 1017 | lwip_write(int s, const void *data, size_t size) |
| 1018 | { |
| 1019 | return lwip_send(s, data, size, 0); |
| 1020 | } |
| 1021 | |
| 1022 | /** |
| 1023 | * Go through the readset and writeset lists and see which socket of the sockets |
nothing calls this directly
no test coverage detected