From c6c0b1d6ff52a14c856d2600a8cc091fdb7d75ff Mon Sep 17 00:00:00 2001
From: Brian Warner <warner@lothar.com>
Date: Mon, 4 Dec 2006 05:14:31 -0700
Subject: [PATCH] increase the maximum size of ShareData, since currently it is
 also a limit on uploaded file size

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

diff --git a/allmydata/interfaces.py b/allmydata/interfaces.py
index 672bd908..d7dffeac 100644
--- a/allmydata/interfaces.py
+++ b/allmydata/interfaces.py
@@ -5,7 +5,7 @@ from foolscap import RemoteInterface
 Nodeid = StringConstraint(20) # binary format 20-byte SHA1 hash
 PBURL = StringConstraint(150)
 Verifierid = StringConstraint(20)
-ShareData = StringConstraint(20000)
+ShareData = StringConstraint(100000)
 # these four are here because Foolscap does not yet support the kind of
 # restriction I really want to apply to these.
 RIClient_ = Any()
-- 
2.45.2