We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df9fd21 commit ec47676Copy full SHA for ec47676
ac.scm
@@ -1035,14 +1035,14 @@
1035
(car args)
1036
list)))))
1037
1038
-; the 2050 means http requests currently capped at 2 meg
1039
; http://list.cs.brown.edu/pipermail/plt-scheme/2005-August/009414.html
+(define upload-limit* (* 30 1000 1000))
1040
1041
(xdef socket-accept (lambda (s)
1042
(ar-init-socket
1043
(lambda () (tcp-accept s))
1044
(lambda (in out)
1045
- (list (make-limited-input-port in 100000 #t)
+ (list (make-limited-input-port in upload-limit* #t)
1046
out
1047
(let-values (((us them) (tcp-addresses out)))
1048
them))))))
0 commit comments