mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-07 15:03:34 +00:00
Fix issue with testing service
What was I thinking imposing arbitrary limits. I hate limits.
This commit is contained in:
parent
52565e7af3
commit
c6f75bf95a
1 changed files with 1 additions and 1 deletions
|
@ -254,7 +254,7 @@ void SetDeadline(int seconds, int micros) {
|
||||||
|
|
||||||
void HandleClient(void) {
|
void HandleClient(void) {
|
||||||
const size_t kMinMsgSize = 4 + 1 + 4 + 4;
|
const size_t kMinMsgSize = 4 + 1 + 4 + 4;
|
||||||
const size_t kMaxNameSize = 32;
|
const size_t kMaxNameSize = 128;
|
||||||
const size_t kMaxFileSize = 10 * 1024 * 1024;
|
const size_t kMaxFileSize = 10 * 1024 * 1024;
|
||||||
unsigned char *p;
|
unsigned char *p;
|
||||||
ssize_t got, wrote;
|
ssize_t got, wrote;
|
||||||
|
|
Loading…
Reference in a new issue