HomeSort by relevance Sort by last modified time
    Searched refs:bindPort (Results 1 - 5 of 5) sorted by null

  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/packets/
PacketGlobalCancelForwardRequest.java 19 public int bindPort;
21 public PacketGlobalCancelForwardRequest(boolean wantReply, String bindAddress, int bindPort)
25 this.bindPort = bindPort;
38 tw.writeUINT32(bindPort);
PacketGlobalForwardRequest.java 19 public int bindPort;
21 public PacketGlobalForwardRequest(boolean wantReply, String bindAddress, int bindPort)
25 this.bindPort = bindPort;
38 tw.writeUINT32(bindPort);
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/channel/
RemoteForwardingData.java 16 public int bindPort;
ChannelManager.java 475 public int requestGlobalForward(String bindAddress, int bindPort, String targetAddress, int targetPort)
481 rfd.bindPort = bindPort;
487 Integer key = new Integer(bindPort);
491 throw new IOException("There is already a forwarding for remote port " + bindPort);
502 PacketGlobalForwardRequest pgf = new PacketGlobalForwardRequest(true, bindAddress, bindPort);
506 log.debug("Requesting a remote forwarding ('" + bindAddress + "', " + bindPort + ")");
521 return bindPort;
524 public void requestCancelGlobalForward(int bindPort) throws IOException
530 rfd = remoteForwardings.get(new Integer(bindPort));
    [all...]
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
Connection.java     [all...]

Completed in 124 milliseconds