From: Guillaume Pellerin Date: Mon, 26 May 2014 09:39:19 +0000 (+0200) Subject: No signal for pycurl streamer X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=2e0dd7e6b5611315d368cae06632d42c249a970c;p=deefuzzer.git No signal for pycurl streamer --- diff --git a/deefuzzer/streamer.py b/deefuzzer/streamer.py index 1d11091..8cb70af 100644 --- a/deefuzzer/streamer.py +++ b/deefuzzer/streamer.py @@ -71,6 +71,7 @@ class HTTPStreamer(Thread): self.uri = self.protocol + '://' + self.host + ':' + str(self.port) + \ self.mount + '?' + 'password=' + self.password self.curl.setopt(pycurl.URL, self.uri) + self.curl.setopt(pycurl.NOSIGNAL, 1) self.curl.setopt(pycurl.UPLOAD, 1) self.curl.setopt(pycurl.READFUNCTION, self.read_callback)