forked from iqiyi/dpvs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnetif_addr.h
49 lines (45 loc) · 2.07 KB
/
netif_addr.h
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/*
* DPVS is a software load balancer (Virtual Server) based on DPDK.
*
* Copyright (C) 2017 iQIYI (www.iqiyi.com).
* All Rights Reserved.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
*/
/**
* netif unicast multicast hw address list setting.
* XXX: currently, support multicast list only.
*
* Lei Chen <[email protected]>, Aug. 2017, initial.
*/
#ifndef __DPVS_NETIF_ADDR_H__
#define __DPVS_NETIF_ADDR_H__
#include "netif.h"
int __netif_mc_add(struct netif_port *dev, const struct ether_addr *addr);
int __netif_mc_del(struct netif_port *dev, const struct ether_addr *addr);
int netif_mc_add(struct netif_port *dev, const struct ether_addr *addr);
int netif_mc_del(struct netif_port *dev, const struct ether_addr *addr);
void netif_mc_flush(struct netif_port *dev);
void netif_mc_init(struct netif_port *dev);
int __netif_mc_dump(struct netif_port *dev,
struct ether_addr *addrs, size_t *naddr);
int netif_mc_dump(struct netif_port *dev,
struct ether_addr *addrs, size_t *naddr);
int __netif_mc_sync(struct netif_port *to, struct netif_port *from);
int netif_mc_sync(struct netif_port *to, struct netif_port *from);
int __netif_mc_unsync(struct netif_port *to, struct netif_port *from);
int netif_mc_unsync(struct netif_port *to, struct netif_port *from);
int __netif_mc_sync_multiple(struct netif_port *to, struct netif_port *from);
int netif_mc_sync_multiple(struct netif_port *to, struct netif_port *from);
int __netif_mc_unsync_multiple(struct netif_port *to, struct netif_port *from);
int netif_mc_unsync_multiple(struct netif_port *to, struct netif_port *from);
#endif /* __DPVS_NETIF_ADDR_H__ */