OLD | NEW |
---|---|
(Empty) | |
1 # Copyright (c) 2001-2004 Twisted Matrix Laboratories. | |
2 # See LICENSE for details. | |
3 | |
4 # | |
5 | |
6 from twisted.words.im.proxyui import IRCUIFactory | |
7 from twisted.python import usage | |
8 | |
9 class Options(usage.Options): | |
10 optParameters = [["ircport", "p", "6667", | |
11 "Port to start the IRC server on."]] | |
12 | |
13 def updateApplication(app, config): | |
14 factory = IRCUIFactory() | |
15 app.listenTCP(int(config.opts['ircport']), IRCUIFactory()) | |
OLD | NEW |