[fs][net] Add lwIP version check on setsockopt().

This commit is contained in:
armink 2018-05-27 21:30:04 +08:00
parent 51db86ca52
commit 488a0fd360
1 changed files with 4 additions and 1 deletions

View File

@ -223,6 +223,10 @@ int setsockopt(int s, int level, int optname, const void *optval, socklen_t optl
{
int sock = dfs_net_getsocket(s);
#if LWIP_VERSION_MAJOR < 2U
#error "Your lwIP version is not supported. Please using lwIP 2.0.0+."
#endif
return lwip_setsockopt(sock, level, optname, optval, optlen);
}
RTM_EXPORT(setsockopt);
@ -346,4 +350,3 @@ int ioctlsocket(int s, long cmd, void *arg)
return lwip_ioctl(sock, cmd, arg);
}
RTM_EXPORT(ioctlsocket);