mirror of
				https://git.proxmox.com/git/mirror_frr
				synced 2025-10-31 08:45:16 +00:00 
			
		
		
		
	 acddc0ed3c
			
		
	
	
		acddc0ed3c
		
	
	
	
	
		
			
			Done with a combination of regex'ing and banging my head against a wall. Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
		
			
				
	
	
		
			50 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			50 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| // SPDX-License-Identifier: GPL-2.0-or-later
 | |
| /* BGP dump routine.
 | |
|  * Copyright (C) 1999 Kunihiro Ishiguro
 | |
|  */
 | |
| 
 | |
| #ifndef _QUAGGA_BGP_DUMP_H
 | |
| #define _QUAGGA_BGP_DUMP_H
 | |
| 
 | |
| /* MRT compatible packet dump values.  */
 | |
| /* type value */
 | |
| #define MSG_PROTOCOL_BGP4MP    16
 | |
| #define MSG_PROTOCOL_BGP4MP_ET 17
 | |
| 
 | |
| /* subtype value */
 | |
| #define BGP4MP_STATE_CHANGE 0
 | |
| #define BGP4MP_MESSAGE 1
 | |
| #define BGP4MP_ENTRY 2
 | |
| #define BGP4MP_SNAPSHOT 3
 | |
| #define BGP4MP_MESSAGE_AS4 4
 | |
| #define BGP4MP_STATE_CHANGE_AS4 5
 | |
| #define BGP4MP_MESSAGE_ADDPATH 8
 | |
| #define BGP4MP_MESSAGE_AS4_ADDPATH 9
 | |
| #define BGP4MP_MESSAGE_LOCAL_ADDPATH 10
 | |
| #define BGP4MP_MESSAGE_AS4_LOCAL_ADDPATH 11
 | |
| 
 | |
| #define BGP_DUMP_HEADER_SIZE 12
 | |
| #define BGP_DUMP_MSG_HEADER  40
 | |
| 
 | |
| #define TABLE_DUMP_V2_PEER_INDEX_TABLE 1
 | |
| #define TABLE_DUMP_V2_RIB_IPV4_UNICAST 2
 | |
| #define TABLE_DUMP_V2_RIB_IPV4_MULTICAST 3
 | |
| #define TABLE_DUMP_V2_RIB_IPV6_UNICAST 4
 | |
| #define TABLE_DUMP_V2_RIB_IPV6_MULTICAST 5
 | |
| #define TABLE_DUMP_V2_RIB_IPV4_UNICAST_ADDPATH 8
 | |
| #define TABLE_DUMP_V2_RIB_IPV4_MULTICAST_ADDPATH 9
 | |
| #define TABLE_DUMP_V2_RIB_IPV6_UNICAST_ADDPATH 10
 | |
| #define TABLE_DUMP_V2_RIB_IPV6_MULTICAST_ADDPATH 11
 | |
| #define TABLE_DUMP_V2_RIB_GENERIC_ADDPATH 12
 | |
| 
 | |
| #define TABLE_DUMP_V2_PEER_INDEX_TABLE_IP  0
 | |
| #define TABLE_DUMP_V2_PEER_INDEX_TABLE_IP6 1
 | |
| #define TABLE_DUMP_V2_PEER_INDEX_TABLE_AS2 0
 | |
| #define TABLE_DUMP_V2_PEER_INDEX_TABLE_AS4 2
 | |
| 
 | |
| extern void bgp_dump_init(void);
 | |
| extern void bgp_dump_finish(void);
 | |
| extern int bgp_dump_state(struct peer *peer);
 | |
| 
 | |
| #endif /* _QUAGGA_BGP_DUMP_H */
 |