Re: tcpdump: Ethernet header is not dumped with -xX if IP header is unaligned

2014-11-28 Thread Mike Belopuhov
Still looking for OK's. On Wed, Nov 26, 2014 at 17:18 +0100, Mike Belopuhov wrote: better diff. the problem is that dissectors use packetp and snapend pointers themselves therefore they should be pointing to the newly allocated structure. we can restore them once we're done with the

Re: [Patch]rcs: use rcsnum_cmp

2014-11-28 Thread Otto Moerbeek
On Sun, Nov 23, 2014 at 05:19:16PM +0100, Fritjof Bornebusch wrote: Hi tech, like the XXX comment says, rcsnum_cmp() can be used instead of a *for* loop. The following shows the original behavior: $ co -r1.2 foo.txt,v foo.txt,v -- foo.txt revision 1.2 done $ co -r1.1 foo.txt,v

httpd: explicit errors on unknown method or missing http version

2014-11-28 Thread Bertrand Janin
Hi, If a client sends a bogus request with an unknown method or no http version string, httpd currently grabs the last error with strerror(), this patch causes it to call server_abort_http() directly with a more explicit error message: Index: server_http.c

Re: [Patch]rcs: use rcsnum_cmp

2014-11-28 Thread Fritjof Bornebusch
On Fri, Nov 28, 2014 at 04:14:50PM +0100, Otto Moerbeek wrote: On Sun, Nov 23, 2014 at 05:19:16PM +0100, Fritjof Bornebusch wrote: Hi tech, like the XXX comment says, rcsnum_cmp() can be used instead of a *for* loop. The following shows the original behavior: $ co -r1.2 foo.txt,v

Disable NOINET6 for carp parent interfaces automatically

2014-11-28 Thread Florian Riehm
Hi, in OpenBSD 5.6 NOINET6 gets disabled on a carp interface after configuring an ipv6 address. Additionally you have to disable NOINET6 at the physical interface or ip6_output() will fail because carp_send_ad() could not determine an ipv6 source address via ifaof_ifpforaddr(). The attached