2008-11-03 04:13:42 +00:00
|
|
|
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */
|
2005-12-31 08:21:24 +00:00
|
|
|
/* NetworkManager -- Network link manager
|
|
|
|
|
*
|
|
|
|
|
* 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.
|
|
|
|
|
*
|
2008-06-26 18:31:52 +00:00
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2005-12-31 08:21:24 +00:00
|
|
|
*
|
2008-11-03 04:13:42 +00:00
|
|
|
* Copyright (C) 2007 - 2008 Novell, Inc.
|
|
|
|
|
* Copyright (C) 2007 - 2008 Red Hat, Inc.
|
2005-12-31 08:21:24 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef NM_DEVICE_PRIVATE_H
|
|
|
|
|
#define NM_DEVICE_PRIVATE_H
|
|
|
|
|
|
|
|
|
|
#include "nm-device.h"
|
2006-10-13 19:41:47 +00:00
|
|
|
|
2008-05-29 20:35:34 +00:00
|
|
|
void nm_device_set_ip_iface (NMDevice *self, const char *iface);
|
2006-01-03 17:07:07 +00:00
|
|
|
|
2008-05-29 20:35:34 +00:00
|
|
|
void nm_device_activate_schedule_stage3_ip_config_start (NMDevice *device);
|
|
|
|
|
|
2008-07-11 10:28:53 +00:00
|
|
|
void nm_device_state_changed (NMDevice *device,
|
|
|
|
|
NMDeviceState state,
|
|
|
|
|
NMDeviceStateReason reason);
|
2007-02-05 12:14:09 +00:00
|
|
|
|
2008-08-18 18:29:47 +00:00
|
|
|
gboolean nm_device_hw_bring_up (NMDevice *self, gboolean wait, gboolean *no_firmware);
|
2008-05-14 01:55:49 +00:00
|
|
|
|
2008-08-18 18:29:47 +00:00
|
|
|
void nm_device_hw_take_down (NMDevice *self, gboolean block);
|
2008-05-14 01:55:49 +00:00
|
|
|
|
2008-07-09 14:05:49 +00:00
|
|
|
void nm_device_handle_autoip4_event (NMDevice *self,
|
|
|
|
|
const char *event,
|
|
|
|
|
const char *address);
|
|
|
|
|
|
2010-05-03 01:19:54 -07:00
|
|
|
gboolean nm_device_ip_config_should_fail (NMDevice *self, gboolean ip6);
|
|
|
|
|
|
2010-07-01 10:32:11 -07:00
|
|
|
gboolean nm_device_get_firmware_missing (NMDevice *self);
|
|
|
|
|
|
|
|
|
|
void nm_device_set_firmware_missing (NMDevice *self, gboolean missing);
|
|
|
|
|
|
2005-12-31 08:21:24 +00:00
|
|
|
#endif /* NM_DEVICE_PRIVATE_H */
|