Searched refs:bindPort (Results 1 – 5 of 5) sorted by relevance
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/packets/ |
D | PacketGlobalForwardRequest.java | 19 public int bindPort; field in PacketGlobalForwardRequest 21 public PacketGlobalForwardRequest(boolean wantReply, String bindAddress, int bindPort) in PacketGlobalForwardRequest() argument 25 this.bindPort = bindPort; in PacketGlobalForwardRequest() 38 tw.writeUINT32(bindPort); in getPayload()
|
D | PacketGlobalCancelForwardRequest.java | 19 public int bindPort; field in PacketGlobalCancelForwardRequest 21 public PacketGlobalCancelForwardRequest(boolean wantReply, String bindAddress, int bindPort) in PacketGlobalCancelForwardRequest() argument 25 this.bindPort = bindPort; in PacketGlobalCancelForwardRequest() 38 tw.writeUINT32(bindPort); in getPayload()
|
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/channel/ |
D | ChannelManager.java | 475 …public int requestGlobalForward(String bindAddress, int bindPort, String targetAddress, int target… in requestGlobalForward() argument 481 rfd.bindPort = bindPort; in requestGlobalForward() 487 Integer key = new Integer(bindPort); in requestGlobalForward() 491 throw new IOException("There is already a forwarding for remote port " + bindPort); in requestGlobalForward() 502 PacketGlobalForwardRequest pgf = new PacketGlobalForwardRequest(true, bindAddress, bindPort); in requestGlobalForward() 506 log.debug("Requesting a remote forwarding ('" + bindAddress + "', " + bindPort + ")"); in requestGlobalForward() 521 return bindPort; in requestGlobalForward() 524 public void requestCancelGlobalForward(int bindPort) throws IOException in requestCancelGlobalForward() argument 530 rfd = remoteForwardings.get(new Integer(bindPort)); in requestCancelGlobalForward() 533 throw new IOException("Sorry, there is no known remote forwarding for remote port " + bindPort); in requestCancelGlobalForward() [all …]
|
D | RemoteForwardingData.java | 16 public int bindPort; field in RemoteForwardingData
|
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/ |
D | Connection.java | 1316 …public synchronized void requestRemotePortForwarding(String bindAddress, int bindPort, String targ… in requestRemotePortForwarding() argument 1325 if ((bindAddress == null) || (targetAddress == null) || (bindPort <= 0) || (targetPort <= 0)) in requestRemotePortForwarding() 1328 cm.requestGlobalForward(bindAddress, bindPort, targetAddress, targetPort); in requestRemotePortForwarding() 1341 public synchronized void cancelRemotePortForwarding(int bindPort) throws IOException in cancelRemotePortForwarding() argument 1349 cm.requestCancelGlobalForward(bindPort); in cancelRemotePortForwarding()
|