def List(self):
     l = Packet.List(self)
     l.extend([
         self.channelName,
         self.flag,
     ])
     return l
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, 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. 4
0
 def List(self):
     l = Packet.List(self)
     l.extend([
         self.password,
         self.mudlistID,
         self.chanlistID,
         self.port,
         self.port_tcp,
         self.port_udp,
         self.mudlib,
         self.baselib,
         self.driver,
         self.mudtype,
         self.status,
         self.email,
         self.services,
         self.other,
     ])
     return l
Esempio n. 5
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. 6
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. 8
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. 9
0
    def __init__(self, restartDelay=0):
        Packet.__init__(self)

        self.restartDelay = restartDelay
Esempio n. 10
0
 def List(self):
     return Packet.List(self).extend([
         self.restartDelay,
     ])
Esempio n. 11
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. 12
0
    def __init__(self, restartDelay=0):
        Packet.__init__(self)

        self.restartDelay = restartDelay
Esempio n. 13
0
 def List(self):
     return Packet.List(self)
    def __init__(self, channelName, flag):
        Packet.__init__(self, mudto=sorrows.i3.routerName)

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