blob: 0bdae0ae4ef17a5af7bd4d6b582630fcf3cde7ee (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# -*- test-case-name: twisted.words.test.test_xmpproutertap -*-
#
# Copyright (c) Twisted Matrix Laboratories.
# See LICENSE for details.
from twisted.application import strports
from twisted.python import usage
from twisted.words.protocols.jabber import component
class Options(usage.Options):
optParameters = [
('port', None, 'tcp:5347:interface=127.0.0.1',
'Port components connect to'),
('secret', None, 'secret', 'Router secret'),
]
optFlags = [
('verbose', 'v', 'Log traffic'),
]
def makeService(config):
router = component.Router()
factory = component.XMPPComponentServerFactory(router, config['secret'])
if config['verbose']:
factory.logTraffic = True
return strports.service(config['port'], factory)
|