add lwip_tryget_socket

This commit is contained in:
SummerGift 2017-11-13 19:06:10 +08:00
parent 0363220042
commit 7a19d911e9
1 changed files with 13 additions and 0 deletions

View File

@ -231,6 +231,19 @@ tryget_socket(int s)
return &sockets[s];
}
/**
* Same as tryget_socket but a global routine.
*
* @param s externally used socket index
* @return struct lwip_sock for the socket or NULL if not found
*/
struct lwip_sock *
lwip_tryget_socket(int s)
{
return tryget_socket(s);
}
/**
* Allocate a new socket for a given netconn.
*