Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2018-08-08 12:56:27 +0300
committerSebastian Huber <sebastian.huber@embedded-brains.de>2018-08-24 16:04:43 +0300
commit0c0dd285969ace58bd1265f4c2ebd75ea087b2ce (patch)
treeab462ec4b1cad251bfd1bb843921b7e5bf4d9a0e /newlib/libc/sys/rtems
parent9ce55ee7167eec4ce4e11c9e1311204e59655cda (diff)
RTEMS: Introduce <machine/_kernel_in.h>
This helps to avoid Newlib updates due to FreeBSD kernel space changes. Signed-off-by: Sebastian Huber <sebastian.huber@embedded-brains.de>
Diffstat (limited to 'newlib/libc/sys/rtems')
-rw-r--r--newlib/libc/sys/rtems/include/netinet/in.h30
1 files changed, 4 insertions, 26 deletions
diff --git a/newlib/libc/sys/rtems/include/netinet/in.h b/newlib/libc/sys/rtems/include/netinet/in.h
index 1a431d1ab..11f32627f 100644
--- a/newlib/libc/sys/rtems/include/netinet/in.h
+++ b/newlib/libc/sys/rtems/include/netinet/in.h
@@ -640,32 +640,6 @@ int getsourcefilter(int, uint32_t, struct sockaddr *, socklen_t,
#endif /* __BSD_VISIBLE */
-#ifdef _KERNEL
-
-struct ifnet; struct mbuf; /* forward declarations for Standard C */
-struct in_ifaddr;
-
-int in_broadcast(struct in_addr, struct ifnet *);
-int in_ifaddr_broadcast(struct in_addr, struct in_ifaddr *);
-int in_canforward(struct in_addr);
-int in_localaddr(struct in_addr);
-int in_localip(struct in_addr);
-int in_ifhasaddr(struct ifnet *, struct in_addr);
-int inet_aton(const char *, struct in_addr *); /* in libkern */
-char *inet_ntoa_r(struct in_addr ina, char *buf); /* in libkern */
-char *inet_ntop(int, const void *, char *, socklen_t); /* in libkern */
-int inet_pton(int af, const char *, void *); /* in libkern */
-void in_ifdetach(struct ifnet *);
-
-#define in_hosteq(s, t) ((s).s_addr == (t).s_addr)
-#define in_nullhost(x) ((x).s_addr == INADDR_ANY)
-#define in_allhosts(x) ((x).s_addr == htonl(INADDR_ALLHOSTS_GROUP))
-
-#define satosin(sa) ((struct sockaddr_in *)(sa))
-#define sintosa(sin) ((struct sockaddr *)(sin))
-#define ifatoia(ifa) ((struct in_ifaddr *)(ifa))
-#endif /* _KERNEL */
-
/* INET6 stuff */
#if __POSIX_VISIBLE >= 200112
#define __KAME_NETINET_IN_H_INCLUDED_
@@ -673,4 +647,8 @@ void in_ifdetach(struct ifnet *);
#undef __KAME_NETINET_IN_H_INCLUDED_
#endif
+#ifdef _KERNEL
+/* Header file provided outside of Newlib */
+#include <machine/_kernel_in.h>
+#endif
#endif /* !_NETINET_IN_H_*/