add lwip_tryget_socket
This commit is contained in:
parent
0363220042
commit
7a19d911e9
|
@ -231,6 +231,19 @@ tryget_socket(int s)
|
||||||
return &sockets[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.
|
* Allocate a new socket for a given netconn.
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in New Issue