summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 1c10afb)
raw | patch | inline | side by side (parent: 1c10afb)
author | Florian Forster <octo@collectd.org> | |
Thu, 31 May 2012 13:09:43 +0000 (15:09 +0200) | ||
committer | Florian Forster <octo@collectd.org> | |
Thu, 31 May 2012 13:09:43 +0000 (15:09 +0200) |
On Solaris, there is a macro called "s_addr" resulting in syntax errors
when this is used as a variable name. The variables have been renamed to
circumvent this problem. Thanks to Maciej BliziĆski for reporting this
problem and helping to debug it!
when this is used as a variable name. The variables have been renamed to
circumvent this problem. Thanks to Maciej BliziĆski for reporting this
problem and helping to debug it!
src/utils_dns.c | patch | blob | history |
diff --git a/src/utils_dns.c b/src/utils_dns.c
index 9a2e479c5ce500a60d396c30140768d9091ab769..05e4695295a157be75f1f68330f4cd9bf1cbc398 100644 (file)
--- a/src/utils_dns.c
+++ b/src/utils_dns.c
unsigned int offset;
int nexthdr;
- struct in6_addr s_addr;
+ struct in6_addr c_src_addr;
uint16_t payload_len;
if (0 > len)
offset = sizeof (struct ip6_hdr);
nexthdr = ipv6->ip6_nxt;
- s_addr = ipv6->ip6_src;
+ c_src_addr = ipv6->ip6_src;
payload_len = ntohs (ipv6->ip6_plen);
- if (ignore_list_match (&s_addr))
+ if (ignore_list_match (&c_src_addr))
return (0);
/* Parse extension headers. This only handles the standard headers, as
{
char buf[PCAP_SNAPLEN];
int offset = ip->ip_hl << 2;
- struct in6_addr s_addr;
- struct in6_addr d_addr;
+ struct in6_addr c_src_addr;
+ struct in6_addr c_dst_addr;
if (ip->ip_v == 6)
return (handle_ipv6 ((struct ip6_hdr *) ip, len));
- in6_addr_from_buffer (&s_addr, &ip->ip_src.s_addr, sizeof (ip->ip_src.s_addr), AF_INET);
- in6_addr_from_buffer (&d_addr, &ip->ip_dst.s_addr, sizeof (ip->ip_dst.s_addr), AF_INET);
- if (ignore_list_match (&s_addr))
+ in6_addr_from_buffer (&c_src_addr, &ip->ip_src.s_addr, sizeof (ip->ip_src.s_addr), AF_INET);
+ in6_addr_from_buffer (&c_dst_addr, &ip->ip_dst.s_addr, sizeof (ip->ip_dst.s_addr), AF_INET);
+ if (ignore_list_match (&c_src_addr))
return (0);
if (IPPROTO_UDP != ip->ip_p)
return 0;