Esempio 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
Esempio 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
Esempio 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
Esempio 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
    def __init__(self, channelName, flag):
        Packet.__init__(self, mudto=sorrows.i3.routerName)

        self.channelName = channelName
        self.flag = int(flag)
Esempio 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
Esempio n. 7
0
    def __init__(self, restartDelay=0):
        Packet.__init__(self)

        self.restartDelay = restartDelay
Esempio 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
Esempio n. 9
0
    def __init__(self, restartDelay=0):
        Packet.__init__(self)

        self.restartDelay = restartDelay
    def __init__(self, channelName, flag):
        Packet.__init__(self, mudto=sorrows.i3.routerName)

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