public class BgpPrefixAttrOspfFwdAddr extends Object implements BgpValueType
| Modifier and Type | Field and Description |
|---|---|
static int |
ATTR_PREFIX_OSPFFWDADDR |
static int |
IPV4_LEN |
static int |
IPV6_LEN |
protected static org.slf4j.Logger |
log |
| Constructor and Description |
|---|
BgpPrefixAttrOspfFwdAddr(short lsAttrLength,
org.onlab.packet.Ip4Address ip4RouterId,
org.onlab.packet.Ip6Address ip6RouterId)
Constructor to initialize the value.
|
| Modifier and Type | Method and Description |
|---|---|
int |
compareTo(Object o)
Compares two objects.
|
boolean |
equals(Object obj) |
short |
getType()
Returns the Type of BGP Message.
|
int |
hashCode() |
static BgpPrefixAttrOspfFwdAddr |
of(short lsAttrLength,
org.onlab.packet.Ip4Address ip4RouterId,
org.onlab.packet.Ip6Address ip6RouterId)
Returns object of this class with specified values.
|
short |
ospfFwdAddrLen()
Returns OSPF forwarding address length.
|
org.onlab.packet.Ip4Address |
ospfv4FwdAddr()
Returns IPV4 Address of OSPF forwarding address.
|
org.onlab.packet.Ip6Address |
ospfv6FwdAddr()
Returns IPV6 Address of OSPF forwarding address.
|
static BgpPrefixAttrOspfFwdAddr |
read(org.jboss.netty.buffer.ChannelBuffer cb)
Reads the OSPF Forwarding Address.
|
String |
toString() |
int |
write(org.jboss.netty.buffer.ChannelBuffer cb)
Writes the byte Stream of BGP Message to channel buffer.
|
protected static final org.slf4j.Logger log
public static final int ATTR_PREFIX_OSPFFWDADDR
public static final int IPV4_LEN
public static final int IPV6_LEN
public BgpPrefixAttrOspfFwdAddr(short lsAttrLength,
org.onlab.packet.Ip4Address ip4RouterId,
org.onlab.packet.Ip6Address ip6RouterId)
lsAttrLength - length of the IP addressip4RouterId - Valid IPV4 address if length is 4 else nullip6RouterId - Valid IPV6 address if length is 16 else nullpublic static BgpPrefixAttrOspfFwdAddr of(short lsAttrLength, org.onlab.packet.Ip4Address ip4RouterId, org.onlab.packet.Ip6Address ip6RouterId)
lsAttrLength - length of the IP addressip4RouterId - Valid IPV4 address if length is 4 else nullip6RouterId - Valid IPV6 address if length is 16 else nullpublic static BgpPrefixAttrOspfFwdAddr read(org.jboss.netty.buffer.ChannelBuffer cb) throws BgpParseException
cb - ChannelBufferBgpParseException - while parsing BgpPrefixAttrOspfFwdAddrpublic org.onlab.packet.Ip4Address ospfv4FwdAddr()
public org.onlab.packet.Ip6Address ospfv6FwdAddr()
public short ospfFwdAddrLen()
public short getType()
BgpValueTypegetType in interface BgpValueTypepublic int write(org.jboss.netty.buffer.ChannelBuffer cb)
BgpValueTypewrite in interface BgpValueTypecb - channel bufferpublic int compareTo(Object o)
BgpValueTypecompareTo in interface BgpValueTypeo - object