Example #1
0
File: JSch.cs Project: itsbth/GLuaR
 public Session getSession(String username, String host, int port)
 {
     Session s=new Session(this);
     s.setUserName(username);
     s.setHost(host);
     s.setPort(port);
     pool.Add(s);
     return s;
 }