diff options
| author | Rich Felker <dalias@aerifal.cx> | 2011-04-05 14:05:11 -0400 | 
|---|---|---|
| committer | Rich Felker <dalias@aerifal.cx> | 2011-04-05 14:05:11 -0400 | 
| commit | e86cc888dfc8a413e52194887e90ea14d4e32cb5 (patch) | |
| tree | 8c67612815d53b23dde0e6606c9e0384824ba804 | |
| parent | 92b2eb8d0331abcf7afbddeca80ebdcf136d8b3d (diff) | |
| download | musl-e86cc888dfc8a413e52194887e90ea14d4e32cb5.tar.gz | |
add some missing ipv6 stuff
| -rw-r--r-- | arch/i386/bits/in.h | 12 | 
1 files changed, 12 insertions, 0 deletions
| diff --git a/arch/i386/bits/in.h b/arch/i386/bits/in.h index 6219eca0..9d9e8183 100644 --- a/arch/i386/bits/in.h +++ b/arch/i386/bits/in.h @@ -71,6 +71,18 @@ struct in_pktinfo  	struct in_addr ipi_addr;  }; +struct in6_pktinfo +{ +	struct in6_addr ipi6_addr; +	unsigned ipi6_ifindex; +}; + +struct in6_mutinfo +{ +	struct sockaddr_in6 ip6m_addr; +	uint32_t ip6m_mtu; +}; +  #define IPV6_ADDRFORM           1  #define IPV6_2292PKTINFO        2  #define IPV6_2292HOPOPTS        3 | 
