summary refs log tree commit diff
path: root/libnm/nm-device-ppp.c
diff options
context:
space:
mode:
authorMichael Biebl <biebl@debian.org>2021-10-01 23:05:04 +0200
committerMichael Biebl <biebl@debian.org>2021-10-01 23:05:04 +0200
commite74c568b07b50b97873fb4ee1d776dedefbd54d6 (patch)
tree3469f17ea9af91f7ff169b890633bda68b0cf76e /libnm/nm-device-ppp.c
parentbfe522304da217296e2a61040f58e35ec5d6f3f2 (diff)
New upstream version 1.32.12 upstream/1.32.12
Diffstat (limited to 'libnm/nm-device-ppp.c')
-rw-r--r--libnm/nm-device-ppp.c37
1 files changed, 0 insertions, 37 deletions
diff --git a/libnm/nm-device-ppp.c b/libnm/nm-device-ppp.c
deleted file mode 100644
index a1c1f741..00000000
--- a/libnm/nm-device-ppp.c
+++ /dev/null
@@ -1,37 +0,0 @@
-/* SPDX-License-Identifier: LGPL-2.1-or-later */
-/*
- * Copyright (C) 2017 Red Hat, Inc.
- */
-
-#include "libnm/nm-default-libnm.h"
-
-#include "nm-device-ppp.h"
-
-#include "nm-device.h"
-
-/*****************************************************************************/
-
-struct _NMDevicePpp {
-    NMDevice parent;
-};
-
-struct _NMDevicePppClass {
-    NMDeviceClass parent;
-};
-
-G_DEFINE_TYPE(NMDevicePpp, nm_device_ppp, NM_TYPE_DEVICE)
-
-/*****************************************************************************/
-
-static void
-nm_device_ppp_init(NMDevicePpp *device)
-{}
-
-const NMLDBusMetaIface _nml_dbus_meta_iface_nm_device_ppp =
-    NML_DBUS_META_IFACE_INIT(NM_DBUS_INTERFACE_DEVICE_PPP,
-                             nm_device_ppp_get_type,
-                             NML_DBUS_META_INTERFACE_PRIO_INSTANTIATE_30, );
-
-static void
-nm_device_ppp_class_init(NMDevicePppClass *klass)
-{}