Home | History | Annotate | Download | only in ssh2

Lines Matching refs:session

20 	private Session session;
24 public SCPOutputStream(SCPClient client, Session session, final String remoteFile, long length, String mode) throws IOException
26 super(session.getStdin(), 40000);
27 this.session = session;
30 InputStream is = new BufferedInputStream(session.getStdout(), 512);
50 scp.readResponse(session.getStdout());
57 if (session != null)
58 session.close();