I am trying to write a program to which clients connect to it while the server can still send commands to all clients. I am using the โTwistedโ solution. How can i do this? Here is the code that I still have (I understand that Twisted already uses non-blocking sockets):
import threading print 'threading.' def dock(): try: from twisted.internet.protocol import Factory, Protocol from twisted.internet import reactor import currentTime print '[*]Imports succesful.' except: print '[/]Imports failed.'
Dar56 source share