interfaces: allow URIs to be up to 300 chars long, we're just crossing over the edge now

This commit is contained in:
Brian Warner 2007-04-26 18:08:29 -07:00
parent 7f273611b4
commit db2caf58d4

View File

@ -12,7 +12,7 @@ Nodeid = StringConstraint(maxLength=20,
minLength=20) # binary format 20-byte SHA1 hash
PBURL = StringConstraint(150)
Verifierid = StringConstraint(20)
URI = StringConstraint(200) # kind of arbitrary
URI = StringConstraint(300) # kind of arbitrary
MAX_BUCKETS = 200 # per peer
ShareData = StringConstraint(100000)