BgpUpdatePathAttributesNextHop

Namespace inet::bgp

BgpUpdatePathAttributesNextHop

class

NEXT_HOP (RFC4271 Section 4.3, Type code 3):

Extends

Name Type Description
BgpUpdatePathAttributes (unknown -- not in documented files)

Fields

Name Type Description
typeCode
optionalBit
transitiveBit
length
value Ipv4Address

Source code

//NEXT_HOP (RFC4271 Section 4.3, Type code 3):
class BgpUpdatePathAttributesNextHop extends BgpUpdatePathAttributes
{
    typeCode = NEXT_HOP;
    optionalBit = false;
    transitiveBit = true;
    length = 4;
    Ipv4Address value;
}

File: src/inet/routing/bgpv4/bgpmessage/BgpHeader.msg