search for: max_packet_size

Displaying 4 results from an estimated 4 matches for "max_packet_size".

2006 May 05
1
Uploading files > 10mb using InstantRails 1.0 configuration.
...;'m using InstantRails 1.0 (rails 1.0 and ruby 1.8.4). When I try to upload a video file ~11MB, IE just hangs on me. Seems like WEBrick hangs too and I can''t connect from another IE. I end up manually killing WEBrick. Would anybody know the problem here? I had to increase my mysql max_packet_size parameter in order to upload in the first place so mysql doesn''t seem to be the issue. Thanks. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060505/82125255/attachment.html
2001 Sep 27
0
OpenSSH 2.9p2 bugs
...("Bad compression level %d.", level); deflateInit(&outgoing_stream, level); } -- 'called' is never set, file packet.c, line 1325: int packet_set_maxsize(int s) { static int called = 0; if (called) { log("packet_set_maxsize: called twice: old %d new %d", max_packet_size, s); return -1; } if (s < 4 * 1024 || s > 1024 * 1024) { log("packet_set_maxsize: bad size %d", s); return -1; } ****** missing: called = 1; log("packet_set_maxsize: setting to %d", s); max_packet_size = s; return s; } cheers, - Jean-Pierre.
2006 Aug 10
2
Patch for openssh server
Hi openssh devs. We submit for your review a patch we have made for sshd, regarding traffic accounting. The native version of openssh does not support traffic accounting, making it quite hard to monitor traffic usage on a per-user basis. The patch in question - Does not log anything except the total amount of data transmitted, when the connection is closed. - Is very simple, only a
2001 Oct 24
2
disable features
.../* Scratch buffer for packet compression/decompression. */ static Buffer compression_buffer; static int compression_buffer_ready = 0; /* Flag indicating whether packet compression/decompression is enabled. */ static int packet_compression = 0; +#endif /* default maximum packet size */ int max_packet_size = 32768; @@ -233,10 +235,12 @@ buffer_free(&output); buffer_free(&outgoing_packet); buffer_free(&incoming_packet); +#ifdef WITH_COMPRESSION if (compression_buffer_ready) { buffer_free(&compression_buffer); buffer_compress_uninit(); } +#endif } /* Sets remote side...