| 1459 | } |
| 1460 | |
| 1461 | int |
| 1462 | lwip_getsockname(int s, struct sockaddr *name, socklen_t *namelen) |
| 1463 | { |
| 1464 | return lwip_getaddrname(s, name, namelen, 1); |
| 1465 | } |
| 1466 | |
| 1467 | int |
| 1468 | lwip_getsockopt(int s, int level, int optname, void *optval, socklen_t *optlen) |
nothing calls this directly
no test coverage detected