Home | History | Annotate | Download | only in channel

Lines Matching refs:bindPort

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));
533 throw new IOException("Sorry, there is no known remote forwarding for remote port " + bindPort);
542 rfd.bindPort);
546 log.debug("Requesting cancelation of remote forward ('" + rfd.bindAddress + "', " + rfd.bindPort + ")");