This file is indexed.

/usr/lib/python2.7/dist-packages/ccnet/async/mqclientproc.py is in libccnet0 6.0.2-2.

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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
import logging
from .processor import Processor
from ccnet.message import message_from_string, message_to_string

INIT = 0
REQUEST_SENT = 1
READY = 2

SC_MSG = '300'
SC_UNSUBSCRIBE = '301'

class MqClientProc(Processor):
    def __init__(self, *args, **kwargs):
        Processor.__init__(self, *args, **kwargs)
        self.state = INIT
        self.callback = None

    def start(self, *argv):
        req = 'mq-server ' + ' '.join(argv)
        self.send_request(req)
        self.state = REQUEST_SENT

    def set_callback(self, cb):
        self.callback = cb

    def handle_response(self, code, code_msg, content):
        if self.state == REQUEST_SENT: 
            if code[0] != '2':
                logging.warning('bad response: %s %s\n', code, code_msg)
                self.done(False)

            self.state = READY

        elif self.state == READY:
            if code[0] != '2' and code[0] != '3':
                logging.warning('bad response: %s %s\n', code, code_msg)
                return

            if code[0] == '3' and code[2] == '0':
                msg = message_from_string(content[:-1])
                if self.callback:
                    self.callback(msg)

    def put_message(self, msg):
        buf = message_to_string(msg)
        self.send_update(SC_MSG, '', buf + '\000')

    def unsubscribe(self):
        self.send_update(SC_UNSUBSCRIBE, '') 
        self.done(True)