net.schmizz.sshj.connection.channel.forwarded.X11Forwarder Maven / Gradle / Ivy
/*
* Copyright (C)2009 - SSHJ Contributors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package net.schmizz.sshj.connection.channel.forwarded;
import net.schmizz.sshj.common.Buffer;
import net.schmizz.sshj.common.SSHPacket;
import net.schmizz.sshj.connection.Connection;
import net.schmizz.sshj.connection.ConnectionException;
import net.schmizz.sshj.transport.TransportException;
/**
* Handles forwarded {@code x11} channels. The actual request to forward X11 should be made from the specific {@link
* net.schmizz.sshj.connection.channel.direct.Session Session}.
*/
public class X11Forwarder
extends AbstractForwardedChannelOpener {
/** An {@code x11} forwarded channel. */
public static class X11Channel
extends AbstractForwardedChannel {
public static final String TYPE = "x11";
public X11Channel(Connection conn,
int recipient, long remoteWinSize, long remoteMaxPacketSize,
String origIP, int origPort) {
super(conn, TYPE, recipient, remoteWinSize, remoteMaxPacketSize, origIP, origPort);
}
}
private final ConnectListener listener;
/**
* @param conn connection layer
* @param listener listener which will be delegated {@link X11Channel}'s to next
*/
public X11Forwarder(Connection conn, ConnectListener listener) {
super(X11Channel.TYPE, conn);
this.listener = listener;
}
/** Internal API */
@Override
public void handleOpen(SSHPacket buf)
throws ConnectionException, TransportException {
try {
callListener(listener, new X11Channel(conn,
buf.readUInt32AsInt(), buf.readUInt32(), buf.readUInt32(),
buf.readString(), buf.readUInt32AsInt()));
} catch (Buffer.BufferException be) {
throw new ConnectionException(be);
}
}
/** Stop handling {@code x11} channel open requests. De-registers itself with connection layer. */
public void stop() {
conn.forget(this);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy