mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-25 23:30:07 +01:00
wimax: remove files forgotten in last commit
The nm-wimax-manager stuff is no longer needed.
This commit is contained in:
parent
9e80c1e85d
commit
a6697a16d3
2 changed files with 0 additions and 145 deletions
|
|
@ -1,95 +0,0 @@
|
|||
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */
|
||||
/* 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.
|
||||
*
|
||||
* 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.
|
||||
*
|
||||
* Copyright (C) 2009 - 2010 Red Hat, Inc.
|
||||
*/
|
||||
|
||||
#include "nm-wimax-manager.h"
|
||||
#include "nm-logging.h"
|
||||
#include "iwmxsdk.h"
|
||||
|
||||
G_DEFINE_TYPE (NMWimaxManager, nm_wimax_manager, G_TYPE_OBJECT)
|
||||
|
||||
#define NM_WIMAX_MANAGER_GET_PRIVATE(o) (G_TYPE_INSTANCE_GET_PRIVATE ((o), \
|
||||
NM_TYPE_WIMAX_MANAGER, \
|
||||
NMWimaxManagerPrivate))
|
||||
|
||||
typedef struct {
|
||||
gboolean disposed;
|
||||
|
||||
gboolean sdk_initialized;
|
||||
} NMWimaxManagerPrivate;
|
||||
|
||||
/***************************************************/
|
||||
|
||||
/*************************************************************/
|
||||
|
||||
NMWimaxManager *
|
||||
nm_wimax_manager_get (void)
|
||||
{
|
||||
static NMWimaxManager *singleton = NULL;
|
||||
|
||||
if (!singleton)
|
||||
singleton = NM_WIMAX_MANAGER (g_object_new (NM_TYPE_WIMAX_MANAGER, NULL));
|
||||
else
|
||||
g_object_ref (singleton);
|
||||
|
||||
g_assert (singleton);
|
||||
return singleton;
|
||||
}
|
||||
|
||||
static void
|
||||
nm_wimax_manager_init (NMWimaxManager *self)
|
||||
{
|
||||
NMWimaxManagerPrivate *priv = NM_WIMAX_MANAGER_GET_PRIVATE (self);
|
||||
int ret;
|
||||
|
||||
ret = iwmx_sdk_api_init();
|
||||
if (ret != 0) {
|
||||
nm_log_warn (LOGD_WIMAX, "Failed to initialize WiMAX: %d", ret);
|
||||
return;
|
||||
}
|
||||
|
||||
priv->sdk_initialized = TRUE;
|
||||
}
|
||||
|
||||
static void
|
||||
dispose (GObject *object)
|
||||
{
|
||||
NMWimaxManagerPrivate *priv = NM_WIMAX_MANAGER_GET_PRIVATE (object);
|
||||
|
||||
if (!priv->disposed) {
|
||||
priv->disposed = TRUE;
|
||||
|
||||
if (priv->sdk_initialized)
|
||||
iwmx_sdk_api_exit ();
|
||||
}
|
||||
|
||||
G_OBJECT_CLASS (nm_wimax_manager_parent_class)->dispose (object);
|
||||
}
|
||||
|
||||
static void
|
||||
nm_wimax_manager_class_init (NMWimaxManagerClass *wimax_class)
|
||||
{
|
||||
GObjectClass *object_class = G_OBJECT_CLASS (wimax_class);
|
||||
|
||||
g_type_class_add_private (wimax_class, sizeof (NMWimaxManagerPrivate));
|
||||
|
||||
/* virtual methods */
|
||||
object_class->dispose = dispose;
|
||||
}
|
||||
|
||||
|
|
@ -1,50 +0,0 @@
|
|||
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */
|
||||
/* 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.
|
||||
*
|
||||
* 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.
|
||||
*
|
||||
* Copyright (C) 2009 - 2010 Red Hat, Inc.
|
||||
*/
|
||||
|
||||
#ifndef NM_WIMAX_MANAGER_H
|
||||
#define NM_WIMAX_MANAGER_H
|
||||
|
||||
#include <glib.h>
|
||||
#include <glib-object.h>
|
||||
|
||||
#define NM_TYPE_WIMAX_MANAGER (nm_wimax_manager_get_type ())
|
||||
#define NM_WIMAX_MANAGER(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), NM_TYPE_WIMAX_MANAGER, NMWimaxManager))
|
||||
#define NM_WIMAX_MANAGER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), NM_TYPE_WIMAX_MANAGER, NMWimaxManagerClass))
|
||||
#define NM_IS_WIMAX_MANAGER(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), NM_TYPE_WIMAX_MANAGER))
|
||||
#define NM_IS_WIMAX_MANAGER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((obj), NM_TYPE_WIMAX_MANAGER))
|
||||
#define NM_WIMAX_MANAGER_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), NM_TYPE_WIMAX_MANAGER, NMWimaxManagerClass))
|
||||
|
||||
#define NM_WIMAX_MANAGER_DEVICE_ADDED "device-added"
|
||||
#define NM_WIMAX_MANAGER_DEVICE_REMOVED "device-removed"
|
||||
|
||||
typedef struct {
|
||||
GObject parent;
|
||||
} NMWimaxManager;
|
||||
|
||||
typedef struct {
|
||||
GObjectClass parent;
|
||||
} NMWimaxManagerClass;
|
||||
|
||||
GType nm_wimax_manager_get_type (void);
|
||||
|
||||
NMWimaxManager *nm_wimax_manager_get (void);
|
||||
|
||||
#endif /* NM_WIMAX_MANAGER_H */
|
||||
|
||||
Loading…
Add table
Reference in a new issue