Displaying 3 results from an estimated 3 matches for "addrp".
Did you mean:
addr
2003 Jun 21
0
[Bug 103] New: ip6tables -L does not separate address and mask if mask is odd
...all ffc0::ffc0:: anywhere
Here's a patch that fixes it:
--- iptables-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));
+...
2009 Feb 02
1
sieve 0.1.2 problem with address and :regex
...x8974ffd "antlr.org|mailman.unixodbc.org|research.att.com|wireshark.org",
key_size=61, key_index=0)
at mcht-regex.c:256
#2 0x080847c9 in sieve_match_value (mctx=0x896b3d0, value=0x896b728 "antlr.org",
val_size=9) at sieve-match.c:83
#3 0x080841c5 in sieve_address_match (addrp=0x8187a20, mctx=0x896b3d0,
data=0x897f080 "antlr-interest-bounces at antlr.org") at sieve-address-parts.c:258
#4 0x0806a5fd in tst_address_operation_execute (op=0x8186688, renv=0x89861b4,
address=0x89861a4)
at tst-address.c:259
#5 0x080804b6 in sieve_interpreter_execute_opera...
2009 Mar 30
3
[Bug 588] New: make ipv6 optional in iptables
http://bugzilla.netfilter.org/show_bug.cgi?id=588
Summary: make ipv6 optional in iptables
Product: iptables
Version: CVS (please indicate timestamp)
Platform: All
OS/Version: All
Status: NEW
Severity: enhancement
Priority: P1
Component: ip6tables
AssignedTo: laforge at netfilter.org