gnu.io.rfc2217.TransmitBinaryOptionHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nrjavaserial Show documentation
Show all versions of nrjavaserial Show documentation
A fork of the RXTX library with a focus on ease of use and embeddability in other libraries.
/*
* Copyright (C) 2010 Archie L. Cobbs. All rights reserved.
*
* $Id: TransmitBinaryOptionHandler.java 46 2011-10-16 23:06:39Z archie.cobbs $
*/
package gnu.io.rfc2217;
import org.apache.commons.net.telnet.TelnetOptionHandler;
/**
* Handler for the telnet {@code TRANSMIT-BINARY} option defined by RFC 856.
*
* @see RFC 856
*/
public class TransmitBinaryOptionHandler extends TelnetOptionHandler {
public static final int TRANSMIT_BINARY_OPTION = 0;
public TransmitBinaryOptionHandler(boolean initlocal, boolean initremote, boolean acceptlocal, boolean acceptremote) {
super(TRANSMIT_BINARY_OPTION, initlocal, initremote, acceptlocal, acceptremote);
}
@Override
public int[] answerSubnegotiation(int[] data, int length) {
return null;
}
@Override
public int[] startSubnegotiationLocal() {
return null;
}
@Override
public int[] startSubnegotiationRemote() {
return null;
}
}