Skip to content

Commit

Permalink
Update pysolovideo.py
Browse files Browse the repository at this point in the history
Removed some patched code that was left there for some reason
  • Loading branch information
ggilestro authored Mar 30, 2017
1 parent ca07d3e commit 29694b5
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions pysolovideo.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,23 +191,15 @@ def startNetworkStream(self, port=8000):
self.socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
self.socket.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
self.socket.bind(('', port))
<<<<<<< HEAD
print ("Live stream socket listening on port {p}...".format(p=port))
=======
print "Live stream socket listening on port {p}...".format(p=port)
>>>>>>> 2c18142d99048230a47ad507b4237c753bbd75ed
self.pipe = None

self.socket.listen(5)

self.socket_thread_1 = threading.Thread(target=self.socket_listen)
<<<<<<< HEAD
self.socket_thread_1.daemon=True
self.socket_thread_2 = threading.Thread(target=self.socket_stream)
self.socket_thread_2.daemon=True
=======
self.socket_thread_2 = threading.Thread(target=self.socket_stream)
>>>>>>> 2c18142d99048230a47ad507b4237c753bbd75ed
self.keepSocket = True

self.socket_thread_1.start()
Expand Down

0 comments on commit 29694b5

Please sign in to comment.