View | Details | Raw Unified | Return to bug 1131 | Differences between
and this patch

Collapse All | Expand All

(-)channels.c (+5 lines)
Lines 2161-2166 channel_input_open_confirmation(int type Link Here
2161
		}
2161
		}
2162
		debug2("channel %d: open confirm rwindow %u rmax %u", c->self,
2162
		debug2("channel %d: open confirm rwindow %u rmax %u", c->self,
2163
		    c->remote_window, c->remote_maxpacket);
2163
		    c->remote_window, c->remote_maxpacket);
2164
		if (c->remote_maxpacket > BUFFER_MAX_CHUNK) {
2165
			c->remote_maxpacket = BUFFER_MAX_CHUNK;
2166
			debug2("channel %d: maxpacket clamped to %u", c->self,
2167
			    BUFFER_MAX_CHUNK);
2168
		}
2164
	}
2169
	}
2165
	packet_check_eom();
2170
	packet_check_eom();
2166
}
2171
}

Return to bug 1131