Home
last modified time | relevance | path

Searched refs:BGP_MSG_OPEN (Results 1 – 18 of 18) sorted by relevance

/dports/net/ryu/ryu-4.26/ryu/services/protocols/bgp/
H A Dspeaker.py33 from ryu.lib.packet.bgp import BGP_MSG_OPEN
335 check2 = (ptype == BGP_MSG_OPEN and length < BGPOpen._MIN_LEN)
415 assert open_msg.type == BGP_MSG_OPEN
452 if msg.type == BGP_MSG_OPEN:
/dports/net/frr7-pythontools/frr-frr-7.5.1/bgpd/
H A Dbgp_io.c375 case BGP_MSG_OPEN: in bgp_write()
538 if (type != BGP_MSG_OPEN && type != BGP_MSG_UPDATE in validate_header()
555 || (type == BGP_MSG_OPEN && size < BGP_MSG_OPEN_MIN_SIZE) in validate_header()
H A Dbgp_packet.c553 bgp_packet_set_marker(s, BGP_MSG_OPEN); in bgp_open_send()
576 hook_call(bgp_packet_send, peer, BGP_MSG_OPEN, stream_get_endp(s), s); in bgp_open_send()
2371 case BGP_MSG_OPEN: in bgp_process_packet()
H A Dbgp_bmp.c559 if (type == BGP_MSG_OPEN) { in bmp_mirror_packet()
673 if (type == BGP_MSG_OPEN) { in bmp_outgoing_packet()
H A Dbgpd.h1552 #define BGP_MSG_OPEN 1 macro
/dports/net/frr7/frr-frr-7.5.1/bgpd/
H A Dbgp_io.c375 case BGP_MSG_OPEN: in bgp_write()
538 if (type != BGP_MSG_OPEN && type != BGP_MSG_UPDATE in validate_header()
555 || (type == BGP_MSG_OPEN && size < BGP_MSG_OPEN_MIN_SIZE) in validate_header()
H A Dbgp_packet.c553 bgp_packet_set_marker(s, BGP_MSG_OPEN); in bgp_open_send()
576 hook_call(bgp_packet_send, peer, BGP_MSG_OPEN, stream_get_endp(s), s); in bgp_open_send()
2371 case BGP_MSG_OPEN: in bgp_process_packet()
H A Dbgp_bmp.c559 if (type == BGP_MSG_OPEN) { in bmp_mirror_packet()
673 if (type == BGP_MSG_OPEN) { in bmp_outgoing_packet()
H A Dbgpd.h1552 #define BGP_MSG_OPEN 1 macro
/dports/net-mgmt/openbmp/openbmp-0.14.0/Server/src/bgp/
H A DparseBGP.h36 enum BGP_MSG_TYPES { BGP_MSG_OPEN=1, BGP_MSG_UPDATE, BGP_MSG_NOTIFICATION, BGP_MSG_KEEPALIVE, enumerator
H A DparseBGP.cpp186 if (parseBgpHeader(data, size) == BGP_MSG_OPEN) { in handleUpEvent()
231 if (parseBgpHeader(data, size) == BGP_MSG_OPEN) { in handleUpEvent()
325 case BGP_MSG_OPEN : // OPEN message in parseBgpHeader()
/dports/net/libbgpdump/libbgpdump-1.6.0/
H A Dexample.c155 …ype == BGPDUMP_SUBTYPE_ZEBRA_BGP_MESSAGE && entry->body.zebra_message.type == BGP_MSG_OPEN) return; in process()
289 case BGP_MSG_OPEN: in process()
H A Dbgpdump_formats.h102 #define BGP_MSG_OPEN 1 macro
H A Dbgpdump_lib.c299 case BGP_MSG_OPEN: in bgpdump_free_mem()
898 case BGP_MSG_OPEN: in process_zebra_bgp_message()
H A Dbgpdump.c696 case BGP_MSG_OPEN: in process()
/dports/net/quagga/quagga-1.2.4/bgpd/
H A Dbgp_packet.c761 case BGP_MSG_OPEN: in bgp_write()
901 bgp_packet_set_marker (s, BGP_MSG_OPEN); in bgp_open_send()
923 peer->host, BGP_MSG_OPEN, length); in bgp_open_send()
2607 if (((type == BGP_MSG_OPEN) || (type == BGP_MSG_KEEPALIVE)) in bgp_read()
2617 if (type != BGP_MSG_OPEN && type != BGP_MSG_UPDATE in bgp_read()
2636 || (type == BGP_MSG_OPEN && size < BGP_MSG_OPEN_MIN_SIZE) in bgp_read()
2677 case BGP_MSG_OPEN: in bgp_read()
H A Dbgpd.h626 #define BGP_MSG_OPEN 1 macro
/dports/net/ryu/ryu-4.26/ryu/lib/packet/
H A Dbgp.py59 BGP_MSG_OPEN = 1 variable
5250 @BGPMessage.register_type(BGP_MSG_OPEN)
5289 def __init__(self, my_as, bgp_identifier, type_=BGP_MSG_OPEN,