Class SocksInitRequestDecoder

java.lang.Object
org.jboss.netty.channel.SimpleChannelUpstreamHandler
org.jboss.netty.handler.codec.frame.FrameDecoder
org.jboss.netty.handler.codec.replay.ReplayingDecoder<org.jboss.netty.handler.codec.socks.SocksInitRequestDecoder.State>
org.jboss.netty.handler.codec.socks.SocksInitRequestDecoder
All Implemented Interfaces:
ChannelHandler, ChannelUpstreamHandler, LifeCycleAwareChannelHandler

public class SocksInitRequestDecoder extends ReplayingDecoder<org.jboss.netty.handler.codec.socks.SocksInitRequestDecoder.State>
Decodes ChannelBuffers into SocksInitRequest. Before returning SocksRequest decoder removes itself from pipeline.
  • Constructor Details

    • SocksInitRequestDecoder

      public SocksInitRequestDecoder()
  • Method Details

    • decode

      protected Object decode(ChannelHandlerContext ctx, Channel channel, ChannelBuffer buffer, org.jboss.netty.handler.codec.socks.SocksInitRequestDecoder.State state) throws Exception
      Description copied from class: ReplayingDecoder
      Decodes the received packets so far into a frame.
      Specified by:
      decode in class ReplayingDecoder<org.jboss.netty.handler.codec.socks.SocksInitRequestDecoder.State>
      Parameters:
      ctx - the context of this handler
      channel - the current channel
      buffer - the cumulative buffer of received packets so far. Note that the buffer might be empty, which means you should not make an assumption that the buffer contains at least one byte in your decoder implementation.
      state - the current decoder state (null if unused)
      Returns:
      the decoded frame
      Throws:
      Exception