X-Git-Url: https://git.rkrishnan.org/?a=blobdiff_plain;f=src%2Fallmydata%2Fintroducer%2Fcommon.py;h=9c5638a36720e5910c865260ca48b6b4efffe24a;hb=71323fbd8f3972092c3a4c1fe0ef7dd666d16f0c;hp=9337d4bbcb10be98f8f96d3f35d36d3f0e0b439c;hpb=759e87b24bec548677e8b36015341472fea0e858;p=tahoe-lafs%2Ftahoe-lafs.git diff --git a/src/allmydata/introducer/common.py b/src/allmydata/introducer/common.py index 9337d4bb..9c5638a3 100644 --- a/src/allmydata/introducer/common.py +++ b/src/allmydata/introducer/common.py @@ -100,20 +100,18 @@ class SubscriberDescriptor: .nickname: their self-provided nickname, or "?" (unicode) .version: their self-provided version (string) .app_versions: versions of each library they use (dict str->str) - .advertised_addresses: what hosts they listen on (list of strings) .remote_address: the external address from which they connected (string) .tubid: for subscribers connecting with Foolscap, their tubid (string) """ def __init__(self, service_name, when, nickname, version, app_versions, - advertised_addresses, remote_address, tubid): + remote_address, tubid): self.service_name = service_name self.when = when self.nickname = nickname self.version = version self.app_versions = app_versions - self.advertised_addresses = advertised_addresses self.remote_address = remote_address self.tubid = tubid