[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Minios-devel] [UNIKRAFT/LWIP PATCH 6/8] Provide lwip socket function interfaces unconditionally
Considering newlib, as compiled for unikraft, does not provide a socket API, these should always be provided, not only when nolibc is used. Signed-off-by: Florian Schmidt <florian.schmidt@xxxxxxxxx> --- include/sys/socket.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/include/sys/socket.h b/include/sys/socket.h index 11f622d..53d9301 100644 --- a/include/sys/socket.h +++ b/include/sys/socket.h @@ -50,7 +50,6 @@ #define ioctl(s, cmd, argp) lwip_ioctl(s, cmd, argp) -#ifdef CONFIG_LIBNOLIBC int socket(int domain, int type, int protocol); int accept(int s, struct sockaddr *addr, socklen_t *addrlen); int bind(int s, const struct sockaddr *name, socklen_t namelen); @@ -69,6 +68,5 @@ int send(int s, const void *dataptr, size_t size, int flags); int sendmsg(int s, const struct msghdr *message, int flags); int sendto(int s, const void *dataptr, size_t size, int flags, const struct sockaddr *to, socklen_t tolen); -#endif /* CONFIG_LIBNOLIBC */ #endif /* _UK_LWIP_SOCKET_H_ */ -- 2.21.0 _______________________________________________ Minios-devel mailing list Minios-devel@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/mailman/listinfo/minios-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |