X-Git-Url: https://vcs.maemo.org/git/?a=blobdiff_plain;f=include%2Frtnl.h;h=c78556b9affcabc26d6aff982445fe5fcfa1d836;hb=0d0a895973544466177880f4cdcdd6db806f6518;hp=5637fb9d45bf87c3e4d5b53c5270703b0b2f0e7e;hpb=97fc312c6036c72eb392dcefe080e30404673f18;p=connman diff --git a/include/rtnl.h b/include/rtnl.h index 5637fb9..c78556b 100644 --- a/include/rtnl.h +++ b/include/rtnl.h @@ -2,7 +2,7 @@ * * Connection Manager * - * Copyright (C) 2007-2008 Intel Corporation. All rights reserved. + * Copyright (C) 2007-2009 Intel Corporation. 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 version 2 as @@ -32,6 +32,13 @@ extern "C" { * @short_description: Functions for registering RTNL modules */ +typedef void (* connman_rtnl_link_cb_t) (unsigned flags, unsigned change, + void *user_data); + +extern unsigned int connman_rtnl_add_newlink_watch(int index, + connman_rtnl_link_cb_t callback, void *user_data); +extern void connman_rtnl_remove_watch(unsigned int id); + #define CONNMAN_RTNL_PRIORITY_LOW -100 #define CONNMAN_RTNL_PRIORITY_DEFAULT 0 #define CONNMAN_RTNL_PRIORITY_HIGH 100 @@ -50,8 +57,8 @@ struct connman_rtnl { extern int connman_rtnl_register(struct connman_rtnl *rtnl); extern void connman_rtnl_unregister(struct connman_rtnl *rtnl); -int connman_rtnl_send_getlink(void); -int connman_rtnl_send_getroute(void); +extern int connman_rtnl_send_getlink(void); +extern int connman_rtnl_send_getroute(void); #ifdef __cplusplus }