當前位置: 首頁>>代碼示例>>Python>>正文


Python RawServer.start_listening方法代碼示例

本文整理匯總了Python中BitTorrent.RawServer_twisted.RawServer.start_listening方法的典型用法代碼示例。如果您正苦於以下問題:Python RawServer.start_listening方法的具體用法?Python RawServer.start_listening怎麽用?Python RawServer.start_listening使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在BitTorrent.RawServer_twisted.RawServer的用法示例。


在下文中一共展示了RawServer.start_listening方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: Preferences

# 需要導入模塊: from BitTorrent.RawServer_twisted import RawServer [as 別名]
# 或者: from BitTorrent.RawServer_twisted.RawServer import start_listening [as 別名]
    config = Preferences().initWithDict(config)
    ef = lambda e: errorfunc(logging.WARNING, e)
    platform.write_pid_file(config['pid'], ef)

    t = None
    try:
        r = RawServer(config)
        t = Tracker(config, r)
        try:
            #DEBUG
            print "track: create_serversocket, port=", config['port']
            #END
            s = r.create_serversocket(config['port'], config['bind'])
            handler = HTTPHandler(t.get, config['min_time_between_log_flushes'])
            r.start_listening(s, handler)
        except socket.error, e:
            print ("Unable to open port %d.  Use a different port?" %
                   config['port'])
            return

        r.listen_forever()
    finally:
        if t: t.save_dfile()
        print _("# Shutting down: ") + isotime()


def size_format(s):
    return str(Size(s))

def errorfunc( level, text ):
開發者ID:galaxysd,項目名稱:BitTorrent,代碼行數:32,代碼來源:track.py


注:本文中的BitTorrent.RawServer_twisted.RawServer.start_listening方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。