Changeset 5189 in josm


Ignore:
Timestamp:
Apr 16, 2012 5:57:49 PM (13 months ago)
Author:
simon04
Message:

remote control: increase the possible request size (from 1KiB to 1MiB)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/io/remotecontrol/RequestProcessor.java

    r5085 r5189  
    140140 
    141141            StringBuffer requestLine = new StringBuffer(); 
    142             while (requestLine.length() < 1024) { 
     142            while (requestLine.length() < 1024 * 1024) { 
    143143                int c = in.read(); 
    144144                if (c == '\r' || c == '\n') 
Note: See TracChangeset for help on using the changeset viewer.