mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-05-19 19:08:09 +02:00
These SPDX license identifiers are deprecated ([1]). Update them. [1] https://spdx.org/licenses/ sed \ -e '1 s%^/\* SPDX-License-Identifier: \(GPL-2.0\|LGPL-2.1\)+ \*/$%/* SPDX-License-Identifier: \1-or-later */%' \ -e '1,2 s%^\(--\|#\|//\) SPDX-License-Identifier: \(GPL-2.0\|LGPL-2.1\)+$%\1 SPDX-License-Identifier: \2-or-later%' \ -i \ $(git grep -l SPDX-License-Identifier -- \ ':(exclude)shared/c-*/' \ ':(exclude)shared/n-*/' \ ':(exclude)shared/systemd/src' \ ':(exclude)src/systemd/src')
30 lines
606 B
C
30 lines
606 B
C
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
|
/*
|
|
* Copyright (C) 2014 Red Hat, Inc.
|
|
*/
|
|
|
|
#include "nm-default.h"
|
|
|
|
#include "nm-ip4-config.h"
|
|
|
|
/*****************************************************************************/
|
|
|
|
struct _NMIP4Config {
|
|
NMIPConfig parent;
|
|
};
|
|
|
|
struct _NMIP4ConfigClass {
|
|
NMIPConfigClass parent;
|
|
};
|
|
|
|
G_DEFINE_TYPE(NMIP4Config, nm_ip4_config, NM_TYPE_IP_CONFIG)
|
|
|
|
/*****************************************************************************/
|
|
|
|
static void
|
|
nm_ip4_config_init(NMIP4Config *config)
|
|
{}
|
|
|
|
static void
|
|
nm_ip4_config_class_init(NMIP4ConfigClass *config_class)
|
|
{}
|