Skip to content

Commit

Permalink
REDIRECTOR_BUFFER_SIZE
Browse files Browse the repository at this point in the history
512 is insufficient. I found a URL with very long query.

darcs-hash:20070409062332-b2eea-c98e6051daeb5bbe3e79901be46f3fa8cd84da72.gz
  • Loading branch information
rubikitch committed Apr 9, 2007
1 parent 14088c7 commit 6aae0b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion forbidden.c
Expand Up @@ -54,7 +54,7 @@ static int rlen, rsize, dlen, dsize;
#ifndef NO_REDIRECTOR
static pid_t redirector_pid = 0;
static int redirector_read_fd = -1, redirector_write_fd = -1;
#define REDIRECTOR_BUFFER_SIZE 512
#define REDIRECTOR_BUFFER_SIZE 1024
static char *redirector_buffer = NULL;
RedirectRequestPtr redirector_request_first = NULL,
redirector_request_last = NULL;
Expand Down

0 comments on commit 6aae0b7

Please sign in to comment.