| 1453 | } |
| 1454 | |
| 1455 | int |
| 1456 | lwip_getpeername(int s, struct sockaddr *name, socklen_t *namelen) |
| 1457 | { |
| 1458 | return lwip_getaddrname(s, name, namelen, 0); |
| 1459 | } |
| 1460 | |
| 1461 | int |
| 1462 | lwip_getsockname(int s, struct sockaddr *name, socklen_t *namelen) |
nothing calls this directly
no test coverage detected