[tor-commits] [flashproxy/master] Rearrange a constant.

dcf at torproject.org dcf at torproject.org
Thu Oct 10 07:00:38 UTC 2013


commit c7d5e1995fae1894df1bcd7fb1ab0e608eae1f7a
Author: David Fifield <david at bamsoftware.com>
Date:   Wed Oct 9 23:39:02 2013 -0700

    Rearrange a constant.
---
 flashproxy-client |    8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/flashproxy-client b/flashproxy-client
index 08dff54..127bfa9 100755
--- a/flashproxy-client
+++ b/flashproxy-client
@@ -43,6 +43,10 @@ DEFAULT_PORT_FORWARDING_HELPER = "tor-fw-helper"
 # facilitator may choose to ignore our requests.
 DESIRED_NUMBER_OF_PROXIES = 3
 
+# We accept up to this many bytes from a socket not yet matched with a partner
+# before disconnecting it.
+UNCONNECTED_BUFFER_LIMIT = 10240
+
 LOG_DATE_FORMAT = "%Y-%m-%d %H:%M:%S"
 
 class options(object):
@@ -66,10 +70,6 @@ class options(object):
     register_commands = []
     safe_logging = True
 
-# We accept up to this many bytes from a socket not yet matched with a partner
-# before disconnecting it.
-UNCONNECTED_BUFFER_LIMIT = 10240
-
 def usage(f = sys.stdout):
     print >> f, """\
 Usage: %(progname)s --register [LOCAL][:PORT] [REMOTE][:PORT]





More information about the tor-commits mailing list