-## Copyright 2002-2003 Andrew Loewenstern, All Rights Reserved
-# see LICENSE.txt for license information
+
+"""Some utitlity functions for use in the apt-dht program.
+
+@var isLocal: a compiled regular expression suitable for testing if an
+ IP address is from a known local or private range
+"""
import os, re
log.msg("got addrs: %r" % (addrs,))
my_addr = None
+ # Try to find an address using the ifconfig function
try:
ifconfig = os.popen("/sbin/ifconfig |/bin/grep inet|"+
"/usr/bin/awk '{print $2}' | "+
except:
ifconfig = []
- # Get counts for all the non-local addresses returned
+ # Get counts for all the non-local addresses returned from ifconfig
addr_count = {}
for addr in ifconfig:
if local_ok or not isLocal.match(addr):
addr_count.setdefault(addr, 0)
addr_count[addr] += 1
+ # If only one was found, use it as a starting point
local_addrs = addr_count.keys()
if len(local_addrs) == 1:
my_addr = local_addrs[0]
log.msg('Found remote address from ifconfig: %r' % (my_addr,))
- # Get counts for all the non-local addresses returned
+ # Get counts for all the non-local addresses returned from the DHT
addr_count = {}
port_count = {}
for addr in addrs:
popular_count = port_count[port]
elif port_count[port] == popular_count:
popular_port.append(port)
-
+
+ # Check to make sure the port isn't being changed
port = intended_port
if len(port_count.keys()) > 1:
log.msg('Problem, multiple ports have been found: %r' % (port_count,))
else:
log.msg('Port was not found')
+ # If one is popular, use that address
if len(popular_addr) == 1:
log.msg('Found popular address: %r' % (popular_addr[0],))
if my_addr and my_addr != popular_addr[0]:
return my_addr
def ipAddrFromChicken():
+ """Retrieve a possible IP address from the ipchecken website."""
import urllib
ip_search = re.compile('\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}')
try:
return []
def uncompact(s):
- """Extract the contatc info from a compact peer representation.
+ """Extract the contact info from a compact peer representation.
@type s: C{string}
@param s: the compact representation
port = 61234
def test_compact(self):
+ """Make sure compacting is reversed correctly by uncompacting."""
d = uncompact(compact(self.ip, self.port))
self.failUnlessEqual(d[0], self.ip)
self.failUnlessEqual(d[1], self.port)