5 * Copyright (C) 2007-2010 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
22 #ifndef __CONNMAN_RTNL_H
23 #define __CONNMAN_RTNL_H
31 * @title: RTNL premitives
32 * @short_description: Functions for registering RTNL modules
35 typedef void (* connman_rtnl_link_cb_t) (unsigned flags, unsigned change,
38 unsigned int connman_rtnl_add_newlink_watch(int index,
39 connman_rtnl_link_cb_t callback, void *user_data);
41 void connman_rtnl_remove_watch(unsigned int id);
43 #define CONNMAN_RTNL_PRIORITY_LOW -100
44 #define CONNMAN_RTNL_PRIORITY_DEFAULT 0
45 #define CONNMAN_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 connman_rtnl_register(struct connman_rtnl *rtnl);
59 void connman_rtnl_unregister(struct connman_rtnl *rtnl);
65 #endif /* __CONNMAN_RTNL_H */