mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-08-03 17:59:07 -04:00
14 lines
678 B
Plaintext
14 lines
678 B
Plaintext
$NetBSD: patch-ac,v 1.3 2013/06/15 20:24:19 adam Exp $
|
|
|
|
--- scapy/sendrecv.py.orig 2009-12-30 22:21:13.000000000 +0000
|
|
+++ scapy/sendrecv.py
|
|
@@ -121,7 +121,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()
|