aboutsummaryrefslogtreecommitdiff
path: root/libmm-common/mm-common-bearer-ip-config.h
diff options
context:
space:
mode:
authorAleksander Morgado <aleksander@lanedo.com>2012-03-01 11:27:46 +0100
committerAleksander Morgado <aleksander@lanedo.com>2012-03-16 14:53:19 +0100
commit323df60ed92d66e985a36a12fb334a0cca9bd1ea (patch)
treea47944f0895600cde59bb034ebd8ce776a02d064 /libmm-common/mm-common-bearer-ip-config.h
parentef9fb0bfacac348c5bab35a3a99d52270e510d99 (diff)
libmm-common: `MMBearerIpConfig' won't be considered internal any more
Renamed `MMCommonBearerIpConfig' to `MMBearerIpConfig', and removed the `MMBearerIpConfig' provided in libmm-glib. We'll just use the original one from libmm-common always.
Diffstat (limited to 'libmm-common/mm-common-bearer-ip-config.h')
-rw-r--r--libmm-common/mm-common-bearer-ip-config.h73
1 files changed, 0 insertions, 73 deletions
diff --git a/libmm-common/mm-common-bearer-ip-config.h b/libmm-common/mm-common-bearer-ip-config.h
deleted file mode 100644
index 4dab99b5..00000000
--- a/libmm-common/mm-common-bearer-ip-config.h
+++ /dev/null
@@ -1,73 +0,0 @@
-/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*
- * 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:
- *
- * Copyright (C) 2012 Google, Inc.
- */
-
-#ifndef MM_COMMON_BEARER_IP_CONFIG_H
-#define MM_COMMON_BEARER_IP_CONFIG_H
-
-#include <ModemManager.h>
-#include <glib-object.h>
-
-G_BEGIN_DECLS
-
-#define MM_TYPE_COMMON_BEARER_IP_CONFIG (mm_common_bearer_ip_config_get_type ())
-#define MM_COMMON_BEARER_IP_CONFIG(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), MM_TYPE_COMMON_BEARER_IP_CONFIG, MMCommonBearerIpConfig))
-#define MM_COMMON_BEARER_IP_CONFIG_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), MM_TYPE_COMMON_BEARER_IP_CONFIG, MMCommonBearerIpConfigClass))
-#define MM_IS_COMMON_BEARER_IP_CONFIG(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), MM_TYPE_COMMON_BEARER_IP_CONFIG))
-#define MM_IS_COMMON_BEARER_IP_CONFIG_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), MM_TYPE_COMMON_BEARER_IP_CONFIG))
-#define MM_COMMON_BEARER_IP_CONFIG_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), MM_TYPE_COMMON_BEARER_IP_CONFIG, MMCommonBearerIpConfigClass))
-
-typedef struct _MMCommonBearerIpConfig MMCommonBearerIpConfig;
-typedef struct _MMCommonBearerIpConfigClass MMCommonBearerIpConfigClass;
-typedef struct _MMCommonBearerIpConfigPrivate MMCommonBearerIpConfigPrivate;
-
-struct _MMCommonBearerIpConfig {
- GObject parent;
- MMCommonBearerIpConfigPrivate *priv;
-};
-
-struct _MMCommonBearerIpConfigClass {
- GObjectClass parent;
-};
-
-GType mm_common_bearer_ip_config_get_type (void);
-
-MMCommonBearerIpConfig *mm_common_bearer_ip_config_new (void);
-MMCommonBearerIpConfig *mm_common_bearer_ip_config_new_from_dictionary (GVariant *dictionary,
- GError **error);
-
-MMCommonBearerIpConfig *mm_common_bearer_ip_config_dup (MMCommonBearerIpConfig *orig);
-
-MMBearerIpMethod mm_common_bearer_ip_config_get_method (MMCommonBearerIpConfig *self);
-const gchar *mm_common_bearer_ip_config_get_address (MMCommonBearerIpConfig *self);
-guint mm_common_bearer_ip_config_get_prefix (MMCommonBearerIpConfig *self);
-const gchar **mm_common_bearer_ip_config_get_dns (MMCommonBearerIpConfig *self);
-const gchar *mm_common_bearer_ip_config_get_gateway (MMCommonBearerIpConfig *self);
-
-void mm_common_bearer_ip_config_set_method (MMCommonBearerIpConfig *self,
- MMBearerIpMethod ip_method);
-void mm_common_bearer_ip_config_set_address (MMCommonBearerIpConfig *self,
- const gchar *address);
-void mm_common_bearer_ip_config_set_prefix (MMCommonBearerIpConfig *self,
- guint prefix);
-void mm_common_bearer_ip_config_set_dns (MMCommonBearerIpConfig *self,
- const gchar **dns);
-void mm_common_bearer_ip_config_set_gateway (MMCommonBearerIpConfig *self,
- const gchar *gateway);
-
-GVariant *mm_common_bearer_ip_config_get_dictionary (MMCommonBearerIpConfig *self);
-
-G_END_DECLS
-
-#endif /* MM_COMMON_BEARER_IP_CONFIG_H */