Exemple #1
0
    def __init__(self, socket, config, framework):
        BasePlugin.__init__(self, socket, config, framework)

        self.rfile = SocketIO(socket, "r")
        self.wfile = SocketIO(socket, "w")

        socket.settimeout(60)
Exemple #2
0
 def __init__(self, socket, config, framework):
     BasePlugin.__init__(self, socket, config, framework)
     self.input_type = None
     self.user_input = None
     self._session = None
Exemple #3
0
 def __init__(self, socket, config, framework):
     BasePlugin.__init__(self, socket, config, framework)
     self.input_type = ""
     self.user_input = ""
     self.io = SocketIO(self._skt, "rw")
     self._session = None