From db2caf58d489501a9a3e614fb33f33a9bbb4176d Mon Sep 17 00:00:00 2001
From: Brian Warner <warner@allmydata.com>
Date: Thu, 26 Apr 2007 18:08:29 -0700
Subject: [PATCH] interfaces: allow URIs to be up to 300 chars long, we're just
 crossing over the edge now

---
 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 855e85c9..64918d4a 100644
--- a/src/allmydata/interfaces.py
+++ b/src/allmydata/interfaces.py
@@ -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)
 
-- 
2.45.2