mirror of
				https://git.proxmox.com/git/mirror_frr
				synced 2025-11-04 06:38:04 +00:00 
			
		
		
		
	Done with a combination of regex'ing and banging my head against a wall. Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
		
			
				
	
	
		
			22 lines
		
	
	
		
			457 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			457 B
		
	
	
	
		
			C
		
	
	
	
	
	
// SPDX-License-Identifier: GPL-2.0-or-later
 | 
						|
/*
 | 
						|
 * PIM for Quagga
 | 
						|
 * Copyright (C) 2008  Everton da Silva Marques
 | 
						|
 */
 | 
						|
 | 
						|
#ifndef PIM_JOIN_H
 | 
						|
#define PIM_JOIN_H
 | 
						|
 | 
						|
#include <zebra.h>
 | 
						|
 | 
						|
#include "if.h"
 | 
						|
 | 
						|
#include "pim_neighbor.h"
 | 
						|
 | 
						|
int pim_joinprune_recv(struct interface *ifp, struct pim_neighbor *neigh,
 | 
						|
		       pim_addr src_addr, uint8_t *tlv_buf, int tlv_buf_size);
 | 
						|
 | 
						|
int pim_joinprune_send(struct pim_rpf *nexthop, struct list *groups);
 | 
						|
 | 
						|
#endif /* PIM_JOIN_H */
 |