From 10df6fac0231d879e22e4e40627464e2bd20b7b9 Mon Sep 17 00:00:00 2001
From: Zooko O'Whielacronx <zooko@zooko.com>
Date: Tue, 22 May 2007 13:59:17 -0700
Subject: [PATCH] raise constraint on FURLs from 150 chars to 1000 chars

---
 src/allmydata/interfaces.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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
-- 
2.45.2