Blame libnm/nm-device-ppp.c

Packit Service 87a54e
/* SPDX-License-Identifier: LGPL-2.1-or-later */
Packit 5756e2
/*
Packit 5756e2
 * Copyright (C) 2017 Red Hat, Inc.
Packit 5756e2
 */
Packit 5756e2
Packit Service 2bceb2
#include "libnm/nm-default-libnm.h"
Packit 5756e2
Packit 5756e2
#include "nm-device-ppp.h"
Packit 5756e2
Packit 5756e2
#include "nm-device.h"
Packit 5756e2
Packit 5756e2
/*****************************************************************************/
Packit 5756e2
Packit 5756e2
struct _NMDevicePpp {
Packit Service a1bd4f
    NMDevice parent;
Packit 5756e2
};
Packit 5756e2
Packit 5756e2
struct _NMDevicePppClass {
Packit Service a1bd4f
    NMDeviceClass parent;
Packit 5756e2
};
Packit 5756e2
Packit Service a1bd4f
G_DEFINE_TYPE(NMDevicePpp, nm_device_ppp, NM_TYPE_DEVICE)
Packit 5756e2
Packit 5756e2
/*****************************************************************************/
Packit 5756e2
Packit 5756e2
static void
Packit Service a1bd4f
nm_device_ppp_init(NMDevicePpp *device)
Packit Service a1bd4f
{}
Packit 5756e2
Packit Service a1bd4f
const NMLDBusMetaIface _nml_dbus_meta_iface_nm_device_ppp =
Packit Service a1bd4f
    NML_DBUS_META_IFACE_INIT(NM_DBUS_INTERFACE_DEVICE_PPP,
Packit Service a1bd4f
                             nm_device_ppp_get_type,
Packit Service a1bd4f
                             NML_DBUS_META_INTERFACE_PRIO_INSTANTIATE_30, );
Packit 5756e2
Packit 5756e2
static void
Packit Service a1bd4f
nm_device_ppp_class_init(NMDevicePppClass *klass)
Packit Service a1bd4f
{}