コード例 #1
0
ファイル: packetStartup.py プロジェクト: rmtew/sorrows-mudlib
    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
コード例 #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
コード例 #3
0
ファイル: packetMudlist.py プロジェクト: rmtew/sorrows-mudlib
    def __init__(self, ttl, mudfrom, userfrom, mudto, userto, mudlistID, infoByName):
        Packet.__init__(self, ttl, mudfrom, userfrom, mudto, userto)

        self.mudlistID = mudlistID
        self.infoByName = infoByName
コード例 #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
コード例 #5
0
    def __init__(self, channelName, flag):
        Packet.__init__(self, mudto=sorrows.i3.routerName)

        self.channelName = channelName
        self.flag = int(flag)
コード例 #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
コード例 #7
0
    def __init__(self, restartDelay=0):
        Packet.__init__(self)

        self.restartDelay = restartDelay
コード例 #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
コード例 #9
0
    def __init__(self, restartDelay=0):
        Packet.__init__(self)

        self.restartDelay = restartDelay
コード例 #10
0
    def __init__(self, channelName, flag):
        Packet.__init__(self, mudto=sorrows.i3.routerName)

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