| 216 | } |
| 217 | |
| 218 | static int inet_getsockname(int socket, struct sockaddr *name, socklen_t *namelen) |
| 219 | { |
| 220 | #if LWIP_VERSION_MAJOR < 2U |
| 221 | rt_kprintf("ERROR: Your lwIP version is not supported. Please using lwIP 2.0.0+.\n"); |
| 222 | RT_ASSERT(LWIP_VERSION_MAJOR >= 2U); |
| 223 | #endif |
| 224 | |
| 225 | return lwip_getsockname(socket, name, namelen); |
| 226 | } |
| 227 | |
| 228 | int inet_ioctlsocket(int socket, long cmd, void *arg) |
| 229 | { |
nothing calls this directly
no test coverage detected