From: Zooko O'Whielacronx Date: Tue, 22 May 2007 20:59:17 +0000 (-0700) Subject: raise constraint on FURLs from 150 chars to 1000 chars X-Git-Tag: allmydata-tahoe-0.3.0~72 X-Git-Url: https://git.rkrishnan.org/?a=commitdiff_plain;h=10df6fac0231d879e22e4e40627464e2bd20b7b9;p=tahoe-lafs%2Ftahoe-lafs.git raise constraint on FURLs from 150 chars to 1000 chars --- diff --git a/src/allmydata/interfaces.py b/src/allmydata/interfaces.py index 440bd7e6..c71f5335 100644 --- a/src/allmydata/interfaces.py +++ b/src/allmydata/interfaces.py @@ -10,7 +10,7 @@ Hash = StringConstraint(maxLength=HASH_SIZE, minLength=HASH_SIZE)# binary format 32-byte SHA256 hash Nodeid = StringConstraint(maxLength=20, minLength=20) # binary format 20-byte SHA1 hash -PBURL = StringConstraint(150) +PBURL = StringConstraint(1000) Verifierid = StringConstraint(20) URI = StringConstraint(300) # kind of arbitrary MAX_BUCKETS = 200 # per peer