def clientConnectionSucceeded(self, protocol): # if this is our outgoing protocol, send our message if protocol == self.outgoingProtocol: msg = protocol.write_request(self.data, "TCP", self.port) protocol.sendString(msg) # otherwise, wait for them to send a message and we'll handle it else: pass
def clientConnectionSucceeded(self, protocol): #if this is our outgoing protocol, send our message if protocol == self.outgoingProtocol: msg = protocol.write_request(self.data, "TCP", self.port) protocol.sendString(msg) #otherwise, wait for them to send a message and we'll handle it else: pass
def clientConnectionSucceeded(self, protocol): msg = protocol.write_request(self.data, "TCP_reply", self.port) protocol.sendString(msg)