Class BGPOpenMessageParser
- java.lang.Object
-
- org.opendaylight.protocol.bgp.parser.impl.message.BGPOpenMessageParser
-
- All Implemented Interfaces:
MessageParser
,MessageSerializer
public final class BGPOpenMessageParser extends Object implements MessageParser, MessageSerializer
Parser for BGP Open message.
-
-
Constructor Summary
Constructors Constructor Description BGPOpenMessageParser(ParameterRegistry reg)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Open
parseMessageBody(io.netty.buffer.ByteBuf body, int messageLength, PeerSpecificParserConstraint constraint)
Parses given byte array to BGP Open message.void
serializeMessage(org.opendaylight.yangtools.yang.binding.Notification msg, io.netty.buffer.ByteBuf bytes)
Serializes given BGP Open message to byte array, without the header.
-
-
-
Field Detail
-
TYPE
public static final int TYPE
- See Also:
- Constant Field Values
-
AS_TRANS
public static final int AS_TRANS
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
BGPOpenMessageParser
public BGPOpenMessageParser(ParameterRegistry reg)
-
-
Method Detail
-
serializeMessage
public void serializeMessage(org.opendaylight.yangtools.yang.binding.Notification msg, io.netty.buffer.ByteBuf bytes)
Serializes given BGP Open message to byte array, without the header.- Specified by:
serializeMessage
in interfaceMessageSerializer
- Parameters:
msg
- BGP Open message to be serialized.bytes
- ByteBuf where the message will be serialized
-
parseMessageBody
public Open parseMessageBody(io.netty.buffer.ByteBuf body, int messageLength, PeerSpecificParserConstraint constraint) throws BGPDocumentedException
Parses given byte array to BGP Open message.- Specified by:
parseMessageBody
in interfaceMessageParser
- Parameters:
body
- byte array representing BGP Open message, without headermessageLength
- the length of the messageconstraint
- Peer specific constraints, implementations may ignore them.- Returns:
Open
BGP Open Message- Throws:
BGPDocumentedException
- if the parsing was unsuccessful
-
-