comparison src/ch/ethz/ssh2/channel/ChannelManager.java @ 427:f6d26c5f878e

WindowChange reverted to be similar to trilead - don't wait for a response to that request
author Carl Byington <carl@five-ten-sg.com>
date Sun, 14 Dec 2014 19:00:19 -0800
parents 071eccdff8ea
children
comparison
equal deleted inserted replaced
426:9b9821808222 427:f6d26c5f878e
607 throw c.getReasonClosed(); 607 throw c.getReasonClosed();
608 } 608 }
609 609
610 tm.sendMessage(pwc.getPayload()); 610 tm.sendMessage(pwc.getPayload());
611 } 611 }
612
613 try {
614 waitForChannelSuccessOrFailure(c);
615 }
616 catch (IOException e) {
617 throw new IOException("The window-change request failed.", e);
618 }
619 } 612 }
620 613
621 public void requestX11(Channel c, boolean singleConnection, String x11AuthenticationProtocol, 614 public void requestX11(Channel c, boolean singleConnection, String x11AuthenticationProtocol,
622 String x11AuthenticationCookie, int x11ScreenNumber) throws IOException { 615 String x11AuthenticationCookie, int x11ScreenNumber) throws IOException {
623 PacketSessionX11Request psr; 616 PacketSessionX11Request psr;