Displaying 1 result from an estimated 1 matches for "interactive_mod".
Did you mean:
interactive_mode
2007 Nov 13
1
Help with openssh: ssh application writing data > 131071 to socket causing message too long error
...72 bytes from the application level to the
socket and hence
the issue.
On going through the code
In client_loop( in clientloop.c)
if (packet_not_very_much_data_to_write())
channel_output_poll();
In packet.c
packet_not_very_much_data_to_write(void)
{
if (interactive_mode)
{
fprintf(stderr,"interactive mode buffer len %d\n",
buffer_len(&output));
return buffer_len(&output) < 16384;
}
else
{
fprintf(stderr,"non interactive mode buffer len %d\n",
buffer_len(&a...