Exemplo n.º 1
0
    def __init__(self, mudto, password, mudlistID, chanlistID, loginPort, driver, mudlib, mudtype, status, emailAddress):
        Packet.__init__(self, mudto=mudto)

        self.password = password
        self.mudlistID = mudlistID
        self.chanlistID = chanlistID
        self.port = loginPort
        self.port_tcp = 0
        self.port_udp = 0
        self.mudlib = mudlib
        self.baselib = mudlib
        self.driver = driver
        self.mudtype = mudtype
        self.status = status
        self.email = emailAddress
        self.services = {
            "ucache": 0,
            "channel": 1,
            "who": 1,
        }
        self.other = 0
Exemplo n.º 2
0
    def __init__(self, mudto, password, mudlistID, chanlistID, loginPort,
                 driver, mudlib, mudtype, status, emailAddress):
        Packet.__init__(self, mudto=mudto)

        self.password = password
        self.mudlistID = mudlistID
        self.chanlistID = chanlistID
        self.port = loginPort
        self.port_tcp = 0
        self.port_udp = 0
        self.mudlib = mudlib
        self.baselib = mudlib
        self.driver = driver
        self.mudtype = mudtype
        self.status = status
        self.email = emailAddress
        self.services = {
            "ucache": 0,
            "channel": 1,
            "who": 1,
        }
        self.other = 0
Exemplo n.º 3
0
    def __init__(self, ttl, mudfrom, userfrom, mudto, userto, mudlistID, infoByName):
        Packet.__init__(self, ttl, mudfrom, userfrom, mudto, userto)

        self.mudlistID = mudlistID
        self.infoByName = infoByName
Exemplo n.º 4
0
    def __init__(self, ttl, mudfrom, userfrom, mudto, userto, routerList, password):
        Packet.__init__(self, ttl, mudfrom, userfrom, mudto, userto)

        self.routerList = routerList
        self.password = password
Exemplo n.º 5
0
    def __init__(self, channelName, flag):
        Packet.__init__(self, mudto=sorrows.i3.routerName)

        self.channelName = channelName
        self.flag = int(flag)
Exemplo n.º 6
0
    def __init__(self, ttl, mudfrom, userfrom, mudto, userto, mudlistID,
                 infoByName):
        Packet.__init__(self, ttl, mudfrom, userfrom, mudto, userto)

        self.mudlistID = mudlistID
        self.infoByName = infoByName
Exemplo n.º 7
0
    def __init__(self, restartDelay=0):
        Packet.__init__(self)

        self.restartDelay = restartDelay
Exemplo n.º 8
0
    def __init__(self, ttl, mudfrom, userfrom, mudto, userto, routerList,
                 password):
        Packet.__init__(self, ttl, mudfrom, userfrom, mudto, userto)

        self.routerList = routerList
        self.password = password
Exemplo n.º 9
0
    def __init__(self, restartDelay=0):
        Packet.__init__(self)

        self.restartDelay = restartDelay
Exemplo n.º 10
0
    def __init__(self, channelName, flag):
        Packet.__init__(self, mudto=sorrows.i3.routerName)

        self.channelName = channelName
        self.flag = int(flag)