summaryrefslogtreecommitdiffstats
path: root/bgpd/rfapi/rfapi_nve_addr.h
blob: 49e9fc5d67e6cf584c21a5524e15a6a963846913 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// SPDX-License-Identifier: GPL-2.0-or-later
/*
 *
 * Copyright 2009-2016, LabN Consulting, L.L.C.
 *
 */

#ifndef _QUAGGA_BGP_RFAPI_NVE_ADDR_H
#define _QUAGGA_BGP_RFAPI_NVE_ADDR_H

#include "rfapi.h"

struct rfapi_nve_addr {
	struct rfapi_ip_addr vn;
	struct rfapi_ip_addr un;
	void *info;
};


extern int rfapi_nve_addr_cmp(const void *k1, const void *k2);

extern void rfapiNveAddr2Str(struct rfapi_nve_addr *na, char *buf, int bufsize);


#endif /* _QUAGGA_BGP_RFAPI_NVE_ADDR_H */