Bugzilla – Attachment 1092 Details for
Bug 1131
buffer_append_space: alloc not supported Error with V 4.2p1
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Limit remote_maxpacket
packetchunk.diff (text/plain), 670 bytes, created by
Damien Miller
on 2006-03-08 22:41:12 AEDT
(
hide
)
Description:
Limit remote_maxpacket
Filename:
MIME Type:
Creator:
Damien Miller
Created:
2006-03-08 22:41:12 AEDT
Size:
670 bytes
patch
obsolete
>Index: channels.c >=================================================================== >RCS file: /cvs/src/usr.bin/ssh/channels.c,v >retrieving revision 1.235 >diff -u -p -r1.235 channels.c >--- channels.c 20 Feb 2006 16:36:14 -0000 1.235 >+++ channels.c 8 Mar 2006 11:38:21 -0000 >@@ -2161,6 +2161,11 @@ channel_input_open_confirmation(int type > } > debug2("channel %d: open confirm rwindow %u rmax %u", c->self, > c->remote_window, c->remote_maxpacket); >+ if (c->remote_maxpacket > BUFFER_MAX_CHUNK) { >+ c->remote_maxpacket = BUFFER_MAX_CHUNK; >+ debug2("channel %d: maxpacket clamped to %u", c->self, >+ BUFFER_MAX_CHUNK); >+ } > } > packet_check_eom(); > }
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 1131
:
1071
|
1072
|
1092
|
1095
|
1100
|
1103
|
1113
|
1114
|
1115
|
1116
|
1117