search for: ipv6_prefix_length

Displaying 4 results from an estimated 4 matches for "ipv6_prefix_length".

Did you mean: ipv4_prefix_length
2003 Jun 21
0
[Bug 102] New: ipv6_prefix_length works only on LITTLE_ENDIAN and prefix_length % 8 == 0
https://bugzilla.netfilter.org/cgi-bin/bugzilla/show_bug.cgi?id=102 Summary: ipv6_prefix_length works only on LITTLE_ENDIAN and prefix_length % 8 == 0 Product: iptables userspace Version: 1.2.8 Platform: other OS/Version: All Status: NEW Severity: minor Priority: P2 Component: libiptc...
2003 Jun 21
0
[Bug 103] New: ip6tables -L does not separate address and mask if mask is odd
...ables-1.2.8/ip6tables.c 2003-06-21 18:19:30.000000000 +0300 +++ iptables-1.2.8-new/ip6tables.c 2003-06-21 18:37:42.000000000 +0300 @@ -578,10 +578,13 @@ static char * mask_to_numeric(const struct in6_addr *addrp) { - static char buf[20]; + static char buf[50+2]; int l = ipv6_prefix_length(addrp); - if (l == -1) - return addr_to_numeric(addrp); + if (l == -1) { + strcpy(buf, "/"); + strcat(buf, addr_to_numeric(addrp)); + return buf; + } sprintf(buf, "/%d", l); return buf; }...
2003 Nov 02
0
[ANNOUNCE] Release of iptables-1.2.9
...alid port ranges [ Thomas Poehnitz ] - LOG target: fix iptables-save (save loglevel numerically) [ Thomas Woerner ] - mport match: fix iptables-save (save numerically) [ Thomas Woerner ] - libipq: fix ipq_id_t definition on 'real' 64bit/64bit architectures [ Ryan Veety ] - libip6tc: fix ipv6_prefix_length endianness bugs [ Mikko Markus Torni ] - MASQUERADE target: don't accept negative port numbers [ Yasuyuki Kozakai ] - physdev match: fix new structure layout for kernel > 2.6.0-test8 [ Bart De Schuymer ] Changes from 1.2.8: - build plugins for connlimit, iprange, realm, CLASSIFY, CONNMA...
2003 Oct 07
0
[ANNOUNCE] Release of iptables-1.2.9rc1
...alid port ranges [ Thomas Poehnitz ] - LOG target: fix iptables-save (save loglevel numerically) [ Thomas Woerner ] - mport match: fix iptables-save (save numerically) [ Thomas Woerner ] - libipq: fix ipq_id_t definition on 'real' 64bit/64bit architectures [ Ryan Veety ] - libip6tc: fix ipv6_prefix_length endianness bugs [ Mikko Markus Torni ] Changes from 1.2.8: - build plugins for connlimit, iprange, realm, CLASSIFY, CONNMARK, NETMAP [ Harald Welte ] - libip(6)tc: Speedup due to inceremental chain cache updates [ Harald Welte ] - recent match: Update to version 0.3.1 that was submitted to the...