removed svn rev headers from sctp classes

This commit is contained in:
Jestan Nirojan 2011-12-07 23:24:08 +05:30
parent 724ca7a913
commit 68379140c4
28 changed files with 3 additions and 57 deletions

View File

@ -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 {

View File

@ -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);
} }

View File

@ -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 {

View File

@ -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 {

View File

@ -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 {

View File

@ -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

View File

@ -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 {

View File

@ -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 {

View File

@ -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 {

View File

@ -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 {

View File

@ -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 {

View File

@ -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;

View File

@ -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;

View File

@ -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 {

View File

@ -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 =

View File

@ -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 {

View File

@ -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 {

View File

@ -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>

View File

@ -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 {

View File

@ -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 {

View File

@ -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 {

View File

@ -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 {

View File

@ -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 {

View File

@ -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 =

View File

@ -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 {

View File

@ -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());

View File

@ -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 {

View File

@ -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());