public interface ForwardingCallback
This interface defines the callback methods required by the socketless SSHD implementation
| Modifier and Type | Method and Description | 
|---|---|
| void | localForwardingCancelled(String destinationHost,
                        int destinationPort,
                        String sessionid)A client has cancelled a local forwarding | 
| void | localForwardingStarted(String destinationHost,
                      int destinationPort,
                      String sessionid)A client has started a local forwarding | 
| void | remoteForwardingCancelled(String listeningAddress,
                         int listeningPort,
                         String sessionid)A client has cancelled a remote forwarding | 
| void | remoteForwardingStarted(String listeningAddress,
                       int listeningPort,
                       String sessionid)A client has started a remote forwarding | 
void localForwardingStarted(String destinationHost, int destinationPort, String sessionid)
destinationHost - the host to which the user is forwarding todestinationPort - the port to which the user is forwarding tosessionid - the users session idvoid localForwardingCancelled(String destinationHost, int destinationPort, String sessionid)
destinationHost - the host to which the user is forwarding todestinationPort - the port to which the user is forwarding tosessionid - the users session idvoid remoteForwardingStarted(String listeningAddress, int listeningPort, String sessionid)
listeningAddress - the address on which the server is listeninglisteningPort - the port on which the server is listeningsessionid - the clients session idvoid remoteForwardingCancelled(String listeningAddress, int listeningPort, String sessionid)
listeningAddress - the address on which the server is listeninglisteningPort - the port on which the server is listeningsessionid - the clients session idCopyright © 2025. All rights reserved.