pkgsrc/net/scapy/patches/patch-ac
drochner e8d6903cfd update to 2.1.1
This release include many bugfixes, most of them for Windows platforms,
thanks mainly to Dirk Loss. There is also VRRP and SCTP protocols
suppor thanks to zer0, IPython support.
2011-02-25 15:43:51 +00:00

13 lines
682 B
Text

$NetBSD: patch-ac,v 1.2 2011/02/25 15:43:51 drochner Exp $
--- scapy/sendrecv.py.orig 2009-12-30 22:21:13.000000000 +0000
+++ scapy/sendrecv.py
@@ -117,7 +117,7 @@ def sndrcv(pks, pkt, timeout = None, int
if remaintime <= 0:
break
r = None
- if arch.FREEBSD or arch.DARWIN:
+ if arch.FREEBSD or arch.DARWIN or arch.DRAGONFLY:
inp, out, err = select(inmask,[],[], 0.05)
if len(inp) == 0 or pks in inp:
r = pks.nonblock_recv()