]> git.parisson.com Git - deefuzzer.git/commitdiff
No signal for pycurl streamer
authorGuillaume Pellerin <yomguy@parisson.com>
Mon, 26 May 2014 09:39:19 +0000 (11:39 +0200)
committerGuillaume Pellerin <yomguy@parisson.com>
Mon, 26 May 2014 09:39:19 +0000 (11:39 +0200)
deefuzzer/streamer.py

index 1d110919dd0a21cfb252284e66495a39ab8f9593..8cb70af63ac01f67301ffd5841dd27edc1a62940 100644 (file)
@@ -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)