mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-25 16:30:07 +01:00
* src/NetworkManagerDbus.c (nm_dbus_get_network_timestamp): Return a GTimeVal instead of time_t. This is easier to work with, since time_t may be a long or double, we don't know. * src/NetworkManagerDbus.h: Update prototype. * src/NetworkManagerAP.c (struct NMAccessPoint): Store a GTimeVal instead of time_t. (nm_ap_get_timestamp): Update to return GTimeVal. (nm_ap_set_timestamp): Update to take GTimeVal. * src/NetworkManagerAPList.c (nm_ap_list_update_network): Handle GTimeVal change. (nm_ap_list_print_members): Fix warnings in printf format. git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@103 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
75 lines
2.7 KiB
C
75 lines
2.7 KiB
C
/* NetworkManager -- Network link manager
|
|
*
|
|
* Dan Williams <dcbw@redhat.com>
|
|
*
|
|
* 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.
|
|
*
|
|
* 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
*
|
|
* (C) Copyright 2004 Red Hat, Inc.
|
|
*/
|
|
|
|
#ifndef NETWORK_MANAGER_DBUS_H
|
|
#define NETWORK_MANAGER_DBUS_H
|
|
|
|
#include <glib.h>
|
|
#include <dbus/dbus.h>
|
|
#include <dbus/dbus-glib.h>
|
|
#include "NetworkManagerAPList.h"
|
|
|
|
#define NM_DBUS_SERVICE "org.freedesktop.NetworkManager"
|
|
|
|
#define NM_DBUS_PATH "/org/freedesktop/NetworkManager"
|
|
#define NM_DBUS_INTERFACE "org.freedesktop.NetworkManager"
|
|
#define NM_DBUS_PATH_DEVICES "/org/freedesktop/NetworkManager/Devices"
|
|
#define NM_DBUS_INTERFACE_DEVICES "org.freedesktop.NetworkManager.Devices"
|
|
|
|
#define NMI_DBUS_SERVICE "org.freedesktop.NetworkManagerInfo"
|
|
#define NMI_DBUS_PATH "/org/freedesktop/NetworkManagerInfo"
|
|
#define NMI_DBUS_INTERFACE "org.freedesktop.NetworkManagerInfo"
|
|
|
|
|
|
typedef enum
|
|
{
|
|
DEVICE_NOW_ACTIVE,
|
|
DEVICE_NO_LONGER_ACTIVE,
|
|
DEVICE_ACTIVATING,
|
|
DEVICE_LIST_CHANGE
|
|
} DeviceStatus;
|
|
|
|
|
|
DBusConnection *nm_dbus_init (NMData *data);
|
|
|
|
gboolean nm_dbus_is_info_daemon_running (DBusConnection *connection);
|
|
|
|
void nm_dbus_signal_device_status_change (DBusConnection *connection, NMDevice *dev, DeviceStatus status);
|
|
|
|
void nm_dbus_signal_devices_changed (DBusConnection *connection);
|
|
|
|
void nm_dbus_signal_device_ip4_address_change(DBusConnection *connection, NMDevice *dev);
|
|
|
|
void nm_dbus_signal_wireless_network_change (DBusConnection *connection, NMDevice *dev, NMAccessPoint *ap, gboolean gone);
|
|
|
|
void nm_dbus_get_user_key_for_network (DBusConnection *connection, NMDevice *dev, NMAccessPoint *ap);
|
|
|
|
void nm_dbus_cancel_get_user_key_for_network (DBusConnection *connection);
|
|
|
|
char * nm_dbus_get_network_essid (DBusConnection *connection, NMNetworkType type, const char *network);
|
|
|
|
char * nm_dbus_get_network_key (DBusConnection *connection, NMNetworkType type, const char *network);
|
|
|
|
GTimeVal * nm_dbus_get_network_timestamp (DBusConnection *connection, NMNetworkType type, const char *network);
|
|
|
|
char ** nm_dbus_get_networks (DBusConnection *connection, NMNetworkType type, int *num_networks);
|
|
|
|
#endif
|