This file is indexed.

/usr/share/pyshared/tp/netlib/discover/browse.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
class Browser(object):
	def GameFound(self, game):
		print "Found new game", game

	def GameUpdate(self, game):
		print "Updated old game", game

	def GameGone(self, game):
		print "Game disappeared", game

from game import Game
class ZeroConfBrowser(Browser):
	ZeroconfMap = {
		'tp'  : 'tp',
		'tps' : 'tps',
		'tp-http' : 'tp+http', 
		'tp-https': 'tp+https'
		}

	def __init__(self):
		self.games = {}

	def ServiceFound(self, name, type, addr, required, optional):
		"""\
		ServiceFound(name, type, addr, tpproto, required, optional)

		type in ['tp', 'tps', 'tp+http', 'tp+https']
		addr is (dns, ip, port)
		
		Required Parameters:
		tp,			is a list of version strings
		server,		version of the server
		servtype,	server type (tpserver-cpp, tpserver-py)
		rule,		ruleset name (MiniSec, TPSec, MyCustomRuleset)
		rulever,	version of the ruleset

		Optional parameters:
		plys,		number of players in the game
		cons,		number of clients currently connected
		objs,		number of "objects" in the game universe
		admin,		admin email address
		cmt,		comment about the game
		turn,		unixtime stamp (GMT) when next turn is generated

		Called when a new server is found.
		"""
		type = self.ZeroconfMap[type]

		required_keys = ['tp', 'server', 'sertype', 'rule', 'rulever']
		for r in required_keys:
			if not r in required:
				print TypeError("Required parameter %s not found!" % r)

		if not self.games.has_key(name):
			self.games[name] = Game(name)
		else:
			self.games[name].new = False

		game = self.games[name]
		game.addLocation(type, addr)

		game.updateRequired(required)
		game.updateOptional(optional)

		if game.new:
			self.GameFound(game)
		else:
			self.GameUpdate(game)

	def ServiceGone(self, name, type, addr):
		"""\
		Called when a server goes away.

		GameGone(name, type, addr)

		type in ['tp', 'tps', 'tp+http', 'tp+https']
		addr is (dns, ip, port)
		"""
		type = self.ZeroconfMap[type]	

		if not self.games.has_key(name):
			# FIXME: Should print error
			return

		if self.games[name].removeLocation(type, addr):
			game = self.games[name]
			del self.games[name]
			self.GameGone(game)

	def GameFound(self, game):
		print "Found new game", game

	def GameUpdate(self, game):
		print "Updated old game", game

	def GameGone(self, game):
		print "Game disappeared", game