Пример #1
0
 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
Пример #2
0
 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
Пример #3
0
 def clientConnectionSucceeded(self, protocol):
     msg = protocol.write_request(self.data, "TCP_reply", self.port)
     protocol.sendString(msg)
Пример #4
0
 def clientConnectionSucceeded(self, protocol):
     msg = protocol.write_request(self.data, "TCP_reply", self.port)
     protocol.sendString(msg)