This file is indexed.

/usr/share/pyshared/tp/netlib/objects/Feature.py is in python-tp-netlib 0.2.5-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
31
32
33
34
35
36
37
38
39
40
from xstruct import pack

from constants import *
from Header import Processed

class Feature(Processed):
	"""\
	The Features frame consists of:
		* a List of UInt32, ID code of feature
	"""
	no = 26
	struct = "[I]"

	possible = {
		FEATURE_SECURE_THIS:		"Secure Connection available on this port",
		FEATURE_SECURE_OTHER:		"Secure Connection available on another port",
		FEATURE_HTTP_THIS:			"HTTP Tunneling available on this port",
		FEATURE_HTTP_OTHER:			"HTTP Tunneling available on another port",
		FEATURE_KEEPALIVE:			"Supports Keep Alive frames",
		FEATURE_ORDERED_OBJECT:		"Sends Object ID Sequences in decending modified time order",
		FEATURE_ORDERED_ORDERDESC:	"Sends Order Description ID Sequences in decending modified time order",
		FEATURE_ORDERED_BOARD:		"Sends Board ID Sequences in decending modified time order",
		FEATURE_ORDERED_RESOURCE:	"Sends Resource Description ID Sequences in decending modified time order",
		FEATURE_ORDERED_CATEGORY:	"Sends Category Description ID Sequences in decending modified time order",
		FEATURE_ORDERED_COMPONENT:	"Sends Component ID Sequences in decending modified time order",

		FEATURE_ACCOUNT_REGISTER:	"Client can register an account through the client",
	}

	def __init__(self, sequence, features):
		Processed.__init__(self, sequence)

		self.length = 4 + len(features) * 4
		self.features = features
	
	def __str__(self):
		output = Processed.__str__(self)
		output += pack(self.struct, self.features)

		return output