removed svn rev headers from sctp classes
This commit is contained in:
parent
724ca7a913
commit
68379140c4
@ -32,7 +32,6 @@ import org.jboss.netty.util.internal.ConversionUtil;
|
|||||||
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
|
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
|
||||||
* @author <a href="http://gleamynode.net/">Trustin Lee</a>
|
* @author <a href="http://gleamynode.net/">Trustin Lee</a>
|
||||||
* @author <a href="http://github.com/jestan">Jestan Nirojan</a>
|
* @author <a href="http://github.com/jestan">Jestan Nirojan</a>
|
||||||
* @version $Rev$, $Date$
|
|
||||||
*/
|
*/
|
||||||
class DefaultNioSctpChannelConfig extends DefaultSctpChannelConfig implements NioSctpChannelConfig {
|
class DefaultNioSctpChannelConfig extends DefaultSctpChannelConfig implements NioSctpChannelConfig {
|
||||||
|
|
||||||
|
@ -30,8 +30,6 @@ import java.io.IOException;
|
|||||||
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
|
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
|
||||||
* @author <a href="http://gleamynode.net/">Trustin Lee</a>
|
* @author <a href="http://gleamynode.net/">Trustin Lee</a>
|
||||||
* @author <a href="http://github.com/jestan">Jestan Nirojan</a>
|
* @author <a href="http://github.com/jestan">Jestan Nirojan</a>
|
||||||
*
|
|
||||||
* @version $Rev$, $Date$
|
|
||||||
*/
|
*/
|
||||||
class DefaultSctpChannelConfig extends DefaultChannelConfig implements SctpChannelConfig {
|
class DefaultSctpChannelConfig extends DefaultChannelConfig implements SctpChannelConfig {
|
||||||
|
|
||||||
@ -76,9 +74,9 @@ class DefaultSctpChannelConfig extends DefaultChannelConfig implements SctpChann
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void setSctpNoDelay(boolean tcpNoDelay) {
|
public void setSctpNoDelay(boolean sctpNoDelay) {
|
||||||
try {
|
try {
|
||||||
channel.setOption(SCTP_NODELAY, tcpNoDelay);
|
channel.setOption(SCTP_NODELAY, sctpNoDelay);
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
throw new ChannelException(e);
|
throw new ChannelException(e);
|
||||||
}
|
}
|
||||||
|
@ -29,7 +29,6 @@ import java.io.IOException;
|
|||||||
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
|
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
|
||||||
* @author <a href="http://gleamynode.net/">Trustin Lee</a>
|
* @author <a href="http://gleamynode.net/">Trustin Lee</a>
|
||||||
* @author <a href="http://github.com/jestan">Jestan Nirojan</a>
|
* @author <a href="http://github.com/jestan">Jestan Nirojan</a>
|
||||||
* @version $Rev$, $Date$
|
|
||||||
*/
|
*/
|
||||||
public class DefaultSctpServerChannelConfig extends DefaultServerChannelConfig
|
public class DefaultSctpServerChannelConfig extends DefaultServerChannelConfig
|
||||||
implements SctpServerChannelConfig {
|
implements SctpServerChannelConfig {
|
||||||
|
@ -47,8 +47,6 @@ import org.jboss.netty.channel.socket.SocketChannelConfig;
|
|||||||
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
|
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
|
||||||
* @author <a href="http://gleamynode.net/">Trustin Lee</a>
|
* @author <a href="http://gleamynode.net/">Trustin Lee</a>
|
||||||
* @author <a href="http://github.com/jestan">Jestan Nirojan</a>
|
* @author <a href="http://github.com/jestan">Jestan Nirojan</a>
|
||||||
*
|
|
||||||
* @version $Rev$, $Date$
|
|
||||||
*/
|
*/
|
||||||
public interface NioSctpChannelConfig extends SctpChannelConfig {
|
public interface NioSctpChannelConfig extends SctpChannelConfig {
|
||||||
|
|
||||||
|
@ -28,9 +28,6 @@ import static org.jboss.netty.channel.Channels.*;
|
|||||||
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
|
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
|
||||||
* @author <a href="http://gleamynode.net/">Trustin Lee</a>
|
* @author <a href="http://gleamynode.net/">Trustin Lee</a>
|
||||||
* @author <a href="http://github.com/jestan">Jestan Nirojan</a>
|
* @author <a href="http://github.com/jestan">Jestan Nirojan</a>
|
||||||
*
|
|
||||||
* @version $Rev$, $Date$
|
|
||||||
*
|
|
||||||
*/
|
*/
|
||||||
final class SctpAcceptedChannel extends SctpChannelImpl {
|
final class SctpAcceptedChannel extends SctpChannelImpl {
|
||||||
|
|
||||||
|
@ -28,7 +28,6 @@ import java.util.Set;
|
|||||||
/**
|
/**
|
||||||
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
|
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
|
||||||
* @author <a href="http://github.com/jestan">Jestan Nirojan</a>
|
* @author <a href="http://github.com/jestan">Jestan Nirojan</a>
|
||||||
* @version $Rev$, $Date$
|
|
||||||
*/
|
*/
|
||||||
public interface SctpChannel extends Channel {
|
public interface SctpChannel extends Channel {
|
||||||
@Override
|
@Override
|
||||||
|
@ -45,7 +45,6 @@ import org.jboss.netty.channel.ChannelConfig;
|
|||||||
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
|
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
|
||||||
* @author <a href="http://gleamynode.net/">Trustin Lee</a>
|
* @author <a href="http://gleamynode.net/">Trustin Lee</a>
|
||||||
* @author <a href="http://github.com/jestan">Jestan Nirojan</a>
|
* @author <a href="http://github.com/jestan">Jestan Nirojan</a>
|
||||||
* @version $Rev$, $Date$
|
|
||||||
*/
|
*/
|
||||||
public interface SctpChannelConfig extends ChannelConfig {
|
public interface SctpChannelConfig extends ChannelConfig {
|
||||||
|
|
||||||
|
@ -35,8 +35,6 @@ import static org.jboss.netty.channel.Channels.fireChannelInterestChanged;
|
|||||||
* @author <a href="http://gleamynode.net/">Trustin Lee</a>
|
* @author <a href="http://gleamynode.net/">Trustin Lee</a>
|
||||||
* @author <a href="http://github.com/jestan">Jestan Nirojan</a>
|
* @author <a href="http://github.com/jestan">Jestan Nirojan</a>
|
||||||
*
|
*
|
||||||
* @version $Rev$, $Date$
|
|
||||||
*
|
|
||||||
*/
|
*/
|
||||||
class SctpChannelImpl extends AbstractChannel implements SctpChannel {
|
class SctpChannelImpl extends AbstractChannel implements SctpChannel {
|
||||||
|
|
||||||
|
@ -29,9 +29,6 @@ import static org.jboss.netty.channel.Channels.fireChannelOpen;
|
|||||||
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
|
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
|
||||||
* @author <a href="http://gleamynode.net/">Trustin Lee</a>
|
* @author <a href="http://gleamynode.net/">Trustin Lee</a>
|
||||||
* @author <a href="http://github.com/jestan">Jestan Nirojan</a>
|
* @author <a href="http://github.com/jestan">Jestan Nirojan</a>
|
||||||
*
|
|
||||||
* @version $Rev$, $Date$
|
|
||||||
*
|
|
||||||
*/
|
*/
|
||||||
final class SctpClientChannel extends SctpChannelImpl {
|
final class SctpClientChannel extends SctpChannelImpl {
|
||||||
|
|
||||||
|
@ -42,9 +42,6 @@ import static org.jboss.netty.channel.Channels.*;
|
|||||||
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
|
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
|
||||||
* @author <a href="http://gleamynode.net/">Trustin Lee</a>
|
* @author <a href="http://gleamynode.net/">Trustin Lee</a>
|
||||||
* @author <a href="http://github.com/jestan">Jestan Nirojan</a>
|
* @author <a href="http://github.com/jestan">Jestan Nirojan</a>
|
||||||
*
|
|
||||||
* @version $Rev$, $Date$
|
|
||||||
*
|
|
||||||
*/
|
*/
|
||||||
class SctpClientPipelineSink extends AbstractChannelSink {
|
class SctpClientPipelineSink extends AbstractChannelSink {
|
||||||
|
|
||||||
|
@ -73,9 +73,6 @@ import java.util.concurrent.Executor;
|
|||||||
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
|
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
|
||||||
* @author <a href="http://gleamynode.net/">Trustin Lee</a>
|
* @author <a href="http://gleamynode.net/">Trustin Lee</a>
|
||||||
* @author <a href="http://github.com/jestan">Jestan Nirojan</a>
|
* @author <a href="http://github.com/jestan">Jestan Nirojan</a>
|
||||||
*
|
|
||||||
* @version $Rev$, $Date$
|
|
||||||
*
|
|
||||||
* @apiviz.landmark
|
* @apiviz.landmark
|
||||||
*/
|
*/
|
||||||
public class SctpClientSocketChannelFactory implements ChannelFactory {
|
public class SctpClientSocketChannelFactory implements ChannelFactory {
|
||||||
|
@ -21,7 +21,6 @@ import org.jboss.netty.buffer.ChannelBuffers;
|
|||||||
/**
|
/**
|
||||||
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
|
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
|
||||||
* @author <a href="http://github.com/jestan">Jestan Nirojan</a>
|
* @author <a href="http://github.com/jestan">Jestan Nirojan</a>
|
||||||
* @version $Rev$, $Date$
|
|
||||||
*/
|
*/
|
||||||
public final class SctpMessage {
|
public final class SctpMessage {
|
||||||
private final int streamNo;
|
private final int streamNo;
|
||||||
|
@ -21,12 +21,8 @@ import org.jboss.netty.channel.ChannelFuture;
|
|||||||
import org.jboss.netty.channel.Channels;
|
import org.jboss.netty.channel.Channels;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
|
||||||
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
|
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
|
||||||
* @author <a href="http://github.com/jestan">Jestan Nirojan</a>
|
* @author <a href="http://github.com/jestan">Jestan Nirojan</a>
|
||||||
*
|
|
||||||
* @version $Rev$, $Date$
|
|
||||||
*
|
|
||||||
*/
|
*/
|
||||||
public class SctpNotificationEvent implements ChannelEvent {
|
public class SctpNotificationEvent implements ChannelEvent {
|
||||||
private Channel channel;
|
private Channel channel;
|
||||||
|
@ -20,12 +20,8 @@ import org.jboss.netty.logging.InternalLogger;
|
|||||||
import org.jboss.netty.logging.InternalLoggerFactory;
|
import org.jboss.netty.logging.InternalLoggerFactory;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
|
||||||
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
|
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
|
||||||
* @author <a href="http://github.com/jestan">Jestan Nirojan</a>
|
* @author <a href="http://github.com/jestan">Jestan Nirojan</a>
|
||||||
*
|
|
||||||
* @version $Rev$, $Date$
|
|
||||||
*
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
class SctpNotificationHandler extends AbstractNotificationHandler {
|
class SctpNotificationHandler extends AbstractNotificationHandler {
|
||||||
|
@ -40,9 +40,6 @@ import java.util.regex.Pattern;
|
|||||||
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
|
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
|
||||||
* @author <a href="http://gleamynode.net/">Trustin Lee</a>
|
* @author <a href="http://gleamynode.net/">Trustin Lee</a>
|
||||||
* @author <a href="http://github.com/jestan">Jestan Nirojan</a>
|
* @author <a href="http://github.com/jestan">Jestan Nirojan</a>
|
||||||
*
|
|
||||||
* @version $Rev$, $Date$
|
|
||||||
*
|
|
||||||
*/
|
*/
|
||||||
class SctpProviderMetadata {
|
class SctpProviderMetadata {
|
||||||
static final InternalLogger logger =
|
static final InternalLogger logger =
|
||||||
|
@ -22,8 +22,6 @@ import java.nio.ByteBuffer;
|
|||||||
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
|
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
|
||||||
* @author <a href="http://gleamynode.net/">Trustin Lee</a>
|
* @author <a href="http://gleamynode.net/">Trustin Lee</a>
|
||||||
* @author <a href="http://github.com/jestan">Jestan Nirojan</a>
|
* @author <a href="http://github.com/jestan">Jestan Nirojan</a>
|
||||||
*
|
|
||||||
* @version $Rev$, $Date$
|
|
||||||
*/
|
*/
|
||||||
final class SctpReceiveBufferPool {
|
final class SctpReceiveBufferPool {
|
||||||
|
|
||||||
|
@ -27,7 +27,6 @@ import java.nio.ByteBuffer;
|
|||||||
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
|
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
|
||||||
* @author <a href="http://gleamynode.net/">Trustin Lee</a>
|
* @author <a href="http://gleamynode.net/">Trustin Lee</a>
|
||||||
* @author <a href="http://github.com/jestan">Jestan Nirojan</a>
|
* @author <a href="http://github.com/jestan">Jestan Nirojan</a>
|
||||||
* @version $Rev: 2174 $, $Date: 2010-02-19 09:57:23 +0900 (Fri, 19 Feb 2010) $
|
|
||||||
*/
|
*/
|
||||||
final class SctpSendBufferPool {
|
final class SctpSendBufferPool {
|
||||||
|
|
||||||
|
@ -21,7 +21,7 @@ import java.net.InetSocketAddress;
|
|||||||
import java.util.Set;
|
import java.util.Set;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A TCP/IP {@link org.jboss.netty.channel.ServerChannel} which accepts incoming TCP/IP connections.
|
* A SCTP {@link org.jboss.netty.channel.ServerChannel} which accepts incoming SCTP connections.
|
||||||
*
|
*
|
||||||
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
|
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
|
||||||
* @author <a href="http://gleamynode.net/">Trustin Lee</a>
|
* @author <a href="http://gleamynode.net/">Trustin Lee</a>
|
||||||
|
@ -45,7 +45,6 @@ import org.jboss.netty.channel.ChannelConfig;
|
|||||||
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
|
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
|
||||||
* @author <a href="http://gleamynode.net/">Trustin Lee</a>
|
* @author <a href="http://gleamynode.net/">Trustin Lee</a>
|
||||||
* @author <a href="http://github.com/jestan">Jestan Nirojan</a>
|
* @author <a href="http://github.com/jestan">Jestan Nirojan</a>
|
||||||
* @version $Rev$, $Date$
|
|
||||||
*/
|
*/
|
||||||
public interface SctpServerChannelConfig extends ChannelConfig {
|
public interface SctpServerChannelConfig extends ChannelConfig {
|
||||||
|
|
||||||
|
@ -37,9 +37,6 @@ import static org.jboss.netty.channel.Channels.fireChannelOpen;
|
|||||||
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
|
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
|
||||||
* @author <a href="http://gleamynode.net/">Trustin Lee</a>
|
* @author <a href="http://gleamynode.net/">Trustin Lee</a>
|
||||||
* @author <a href="http://github.com/jestan">Jestan Nirojan</a>
|
* @author <a href="http://github.com/jestan">Jestan Nirojan</a>
|
||||||
*
|
|
||||||
* @version $Rev$, $Date$
|
|
||||||
*
|
|
||||||
*/
|
*/
|
||||||
class SctpServerChannelImpl extends AbstractServerChannel
|
class SctpServerChannelImpl extends AbstractServerChannel
|
||||||
implements SctpServerChannel {
|
implements SctpServerChannel {
|
||||||
|
@ -36,9 +36,6 @@ import static org.jboss.netty.channel.Channels.*;
|
|||||||
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
|
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
|
||||||
* @author <a href="http://gleamynode.net/">Trustin Lee</a>
|
* @author <a href="http://gleamynode.net/">Trustin Lee</a>
|
||||||
* @author <a href="http://github.com/jestan">Jestan Nirojan</a>
|
* @author <a href="http://github.com/jestan">Jestan Nirojan</a>
|
||||||
*
|
|
||||||
* @version $Rev$, $Date$
|
|
||||||
*
|
|
||||||
*/
|
*/
|
||||||
class SctpServerPipelineSink extends AbstractChannelSink {
|
class SctpServerPipelineSink extends AbstractChannelSink {
|
||||||
|
|
||||||
|
@ -78,8 +78,6 @@ import java.util.concurrent.Executor;
|
|||||||
* @author <a href="http://gleamynode.net/">Trustin Lee</a>
|
* @author <a href="http://gleamynode.net/">Trustin Lee</a>
|
||||||
* @author <a href="http://github.com/jestan">Jestan Nirojan</a>
|
* @author <a href="http://github.com/jestan">Jestan Nirojan</a>
|
||||||
*
|
*
|
||||||
* @version $Rev$, $Date$
|
|
||||||
*
|
|
||||||
* @apiviz.landmark
|
* @apiviz.landmark
|
||||||
*/
|
*/
|
||||||
public class SctpServerSocketChannelFactory implements ServerChannelFactory {
|
public class SctpServerSocketChannelFactory implements ServerChannelFactory {
|
||||||
|
@ -45,8 +45,6 @@ import static org.jboss.netty.channel.Channels.*;
|
|||||||
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
|
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
|
||||||
* @author <a href="http://gleamynode.net/">Trustin Lee</a>
|
* @author <a href="http://gleamynode.net/">Trustin Lee</a>
|
||||||
* @author <a href="http://github.com/jestan">Jestan Nirojan</a>
|
* @author <a href="http://github.com/jestan">Jestan Nirojan</a>
|
||||||
*
|
|
||||||
* @version $Rev$, $Date$
|
|
||||||
*/
|
*/
|
||||||
@SuppressWarnings("unchecked")
|
@SuppressWarnings("unchecked")
|
||||||
class SctpWorker implements Runnable {
|
class SctpWorker implements Runnable {
|
||||||
|
@ -26,8 +26,6 @@ import java.nio.channels.Selector;
|
|||||||
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
|
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
|
||||||
* @author <a href="http://gleamynode.net/">Trustin Lee</a>
|
* @author <a href="http://gleamynode.net/">Trustin Lee</a>
|
||||||
* @author <a href="http://github.com/jestan">Jestan Nirojan</a>
|
* @author <a href="http://github.com/jestan">Jestan Nirojan</a>
|
||||||
*
|
|
||||||
* @version $Rev$, $Date$
|
|
||||||
*/
|
*/
|
||||||
final class SelectorUtil {
|
final class SelectorUtil {
|
||||||
private static final InternalLogger logger =
|
private static final InternalLogger logger =
|
||||||
|
@ -33,7 +33,6 @@ import java.util.concurrent.Executors;
|
|||||||
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
|
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
|
||||||
* @author <a href="http://gleamynode.net/">Trustin Lee</a>
|
* @author <a href="http://gleamynode.net/">Trustin Lee</a>
|
||||||
* @author <a href="http://github.com/jestan">Jestan Nirojan</a>
|
* @author <a href="http://github.com/jestan">Jestan Nirojan</a>
|
||||||
* @version $Rev$, $Date$
|
|
||||||
*/
|
*/
|
||||||
public class SctpClient {
|
public class SctpClient {
|
||||||
|
|
||||||
|
@ -30,7 +30,6 @@ import java.util.logging.Logger;
|
|||||||
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
|
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
|
||||||
* @author <a href="http://gleamynode.net/">Trustin Lee</a>
|
* @author <a href="http://gleamynode.net/">Trustin Lee</a>
|
||||||
* @author <a href="http://github.com/jestan">Jestan Nirojan</a>
|
* @author <a href="http://github.com/jestan">Jestan Nirojan</a>
|
||||||
* @version $Rev$, $Date$
|
|
||||||
*/
|
*/
|
||||||
public class SctpClientHandler extends SimpleChannelUpstreamHandler {
|
public class SctpClientHandler extends SimpleChannelUpstreamHandler {
|
||||||
private static final Logger logger = Logger.getLogger(SctpClientHandler.class.getName());
|
private static final Logger logger = Logger.getLogger(SctpClientHandler.class.getName());
|
||||||
|
@ -32,7 +32,6 @@ import java.util.concurrent.Executors;
|
|||||||
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
|
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
|
||||||
* @author <a href="http://gleamynode.net/">Trustin Lee</a>
|
* @author <a href="http://gleamynode.net/">Trustin Lee</a>
|
||||||
* @author <a href="http://github.com/jestan">Jestan Nirojan</a>
|
* @author <a href="http://github.com/jestan">Jestan Nirojan</a>
|
||||||
* @version $Rev$, $Date$
|
|
||||||
*/
|
*/
|
||||||
public class SctpServer {
|
public class SctpServer {
|
||||||
|
|
||||||
|
@ -30,7 +30,6 @@ import java.util.logging.Logger;
|
|||||||
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
|
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
|
||||||
* @author <a href="http://gleamynode.net/">Trustin Lee</a>
|
* @author <a href="http://gleamynode.net/">Trustin Lee</a>
|
||||||
* @author <a href="http://github.com/jestan">Jestan Nirojan</a>
|
* @author <a href="http://github.com/jestan">Jestan Nirojan</a>
|
||||||
* @version $Rev$, $Date$
|
|
||||||
*/
|
*/
|
||||||
public class SctpServerHandler extends SimpleChannelUpstreamHandler {
|
public class SctpServerHandler extends SimpleChannelUpstreamHandler {
|
||||||
private static final Logger logger = Logger.getLogger(SctpServerHandler.class.getName());
|
private static final Logger logger = Logger.getLogger(SctpServerHandler.class.getName());
|
||||||
|
Loading…
Reference in New Issue
Block a user