* include/cygwin/in.h: Don't define ipv6 stuff unless we call for it
specifically since it isn't really implemented yet.
This commit is contained in:
parent
bd8938985e
commit
2e5228f964
|
@ -1,3 +1,8 @@
|
||||||
|
2003-09-07 Christopher Faylor <cgf@redhat.com>
|
||||||
|
|
||||||
|
* include/cygwin/in.h: Don't define ipv6 stuff unless we call for it
|
||||||
|
specifically since it isn't really implemented yet.
|
||||||
|
|
||||||
2003-09-07 Christopher Faylor <cgf@redhat.com>
|
2003-09-07 Christopher Faylor <cgf@redhat.com>
|
||||||
|
|
||||||
* cygheap.cc (_csbrk): More left coercion cleanup.
|
* cygheap.cc (_csbrk): More left coercion cleanup.
|
||||||
|
|
|
@ -170,6 +170,7 @@ struct sockaddr_in
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef USE_IPV6
|
||||||
/* IPv6 definitions as we start to include them. This is just
|
/* IPv6 definitions as we start to include them. This is just
|
||||||
a beginning dont get excited 8) */
|
a beginning dont get excited 8) */
|
||||||
struct in6_addr
|
struct in6_addr
|
||||||
|
@ -184,4 +185,5 @@ struct sockaddr_in6
|
||||||
unsigned long sin6_flowinfo;
|
unsigned long sin6_flowinfo;
|
||||||
struct in6_addr sin6_addr;
|
struct in6_addr sin6_addr;
|
||||||
};
|
};
|
||||||
|
#endif
|
||||||
#endif /* _CYGWIN_IN_H */
|
#endif /* _CYGWIN_IN_H */
|
||||||
|
|
Loading…
Reference in New Issue