device: renew dhcp leases on awake for software devices
[NetworkManager.git] / src / nm-route-manager.h
1 /* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */
2 /* NetworkManager -- Network link manager
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17  *
18  * Copyright (C) 2015 Red Hat, Inc.
19  */
20
21
22 #include "nm-default.h"
23
24 #ifndef __NETWORKMANAGER_ROUTE_MANAGER_H__
25 #define __NETWORKMANAGER_ROUTE_MANAGER_H__
26
27 #define NM_TYPE_ROUTE_MANAGER            (nm_route_manager_get_type ())
28 #define NM_ROUTE_MANAGER(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), NM_TYPE_ROUTE_MANAGER, NMRouteManager))
29 #define NM_ROUTE_MANAGER_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), NM_TYPE_ROUTE_MANAGER, NMRouteManagerClass))
30 #define NM_IS_ROUTE_MANAGER(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), NM_TYPE_ROUTE_MANAGER))
31 #define NM_IS_ROUTE_MANAGER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), NM_TYPE_ROUTE_MANAGER))
32 #define NM_ROUTE_MANAGER_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj), NM_TYPE_ROUTE_MANAGER, NMRouteManagerClass))
33
34 #define NM_ROUTE_MANAGER_PLATFORM "platform"
35
36 struct _NMRouteManager {
37         GObject parent;
38 };
39
40 typedef struct {
41         GObjectClass parent;
42 } NMRouteManagerClass;
43
44 GType nm_route_manager_get_type (void);
45
46 gboolean nm_route_manager_ip4_route_sync (NMRouteManager *self, int ifindex, const GArray *known_routes, gboolean ignore_kernel_routes, gboolean full_sync);
47 gboolean nm_route_manager_ip6_route_sync (NMRouteManager *self, int ifindex, const GArray *known_routes, gboolean ignore_kernel_routes, gboolean full_sync);
48 gboolean nm_route_manager_route_flush (NMRouteManager *self, int ifindex);
49
50 void nm_route_manager_ip4_route_register_device_route_purge_list (NMRouteManager *self, GArray *device_route_purge_list);
51
52 NMRouteManager *nm_route_manager_get (void);
53 NMRouteManager *nm_route_manager_new (NMPlatform *platform);
54
55 #endif  /* NM_ROUTE_MANAGER_H */