Home
last modified time | relevance | path

Searched refs:bindPort (Results 1 – 5 of 5) sorted by relevance

/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/packets/
DPacketGlobalForwardRequest.java19 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()
DPacketGlobalCancelForwardRequest.java19 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/
DChannelManager.java475 …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 …]
DRemoteForwardingData.java16 public int bindPort; field in RemoteForwardingData
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
DConnection.java1316 …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()