* include/cygwin/in6.h (struct ipv6_mreq): Change type of interface
member to uint32_t. (struct in6_pktinfo): Ditto.
This commit is contained in:
parent
6281771f37
commit
2fd167e6de
|
@ -1,3 +1,9 @@
|
|||
2007-01-16 Corinna Vinschen <corinna@vinschen.de>
|
||||
|
||||
* include/cygwin/in6.h (struct ipv6_mreq): Change type of interface
|
||||
member to uint32_t.
|
||||
(struct in6_pktinfo): Ditto.
|
||||
|
||||
2007-01-16 Corinna Vinschen <corinna@vinschen.de>
|
||||
|
||||
* include/cygwin/in.h (struct ip_mreq_source): Define.
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/* cygwin/in6.h
|
||||
|
||||
Copyright 2006 Red Hat, Inc.
|
||||
Copyright 2006, 2007 Red Hat, Inc.
|
||||
|
||||
This file is part of Cygwin.
|
||||
|
||||
|
@ -88,13 +88,13 @@ struct in6_addr
|
|||
struct ipv6_mreq
|
||||
{
|
||||
struct in6_addr ipv6mr_multiaddr;
|
||||
unsigned int ipv6mr_interface;
|
||||
uint32_t ipv6mr_interface;
|
||||
};
|
||||
|
||||
struct in6_pktinfo
|
||||
{
|
||||
struct in6_addr ipi6_addr;
|
||||
unsigned int ipi6_ifindex;
|
||||
uint32_t ipi6_ifindex;
|
||||
};
|
||||
|
||||
#if defined (__INSIDE_CYGWIN__) && !defined (_CYGWIN_IN_H)
|
||||
|
|
Loading…
Reference in New Issue