5 * Copyright (C) 2012 Intel Corporation. All rights reserved.
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
31 * @title: RTNL premitives
32 * @short_description: Functions for registering RTNL modules
35 typedef void (* vpn_rtnl_link_cb_t) (unsigned flags, unsigned change,
38 unsigned int vpn_rtnl_add_newlink_watch(int index,
39 vpn_rtnl_link_cb_t callback, void *user_data);
41 void vpn_rtnl_remove_watch(unsigned int id);
43 #define VPN_RTNL_PRIORITY_LOW -100
44 #define VPN_RTNL_PRIORITY_DEFAULT 0
45 #define VPN_RTNL_PRIORITY_HIGH 100
50 void (*newlink) (unsigned short type, int index,
51 unsigned flags, unsigned change);
52 void (*dellink) (unsigned short type, int index,
53 unsigned flags, unsigned change);
54 void (*newgateway) (int index, const char *gateway);
55 void (*delgateway) (int index, const char *gateway);
58 int vpn_rtnl_register(struct vpn_rtnl *rtnl);
59 void vpn_rtnl_unregister(struct vpn_rtnl *rtnl);
65 #endif /* __VPN_RTNL_H */