This file is indexed.

/usr/lib/python2.7/dist-packages/twisted/words/xmpproutertap.py is in python-twisted-words 14.0.2-3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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)