Fix issue with testing service

What was I thinking imposing arbitrary limits. I hate limits.
This commit is contained in:
Justine Tunney 2021-03-28 18:22:36 -07:00
parent 52565e7af3
commit c6f75bf95a

View file

@ -254,7 +254,7 @@ void SetDeadline(int seconds, int micros) {
void HandleClient(void) {
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;
unsigned char *p;
ssize_t got, wrote;