Implementing SNMP4J Decoder for Apache MINA
Recently started evaluating Apache MINA. So thought about building a Trap Receiver using Apache MINA. Refer to one of my posting on What is Apache MINA?
Design
In this post we shall concentrate on just writing the ProtocolDecoder
The code snippet using SNMP4J library is
public class SNMP4JCodec extends ProtocolDecoderAdapter {
static Logger logger = LoggerFactory.getLogger(SNMP4JCodec.class);
public void decode(IoSession ioSession, [...]
