mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-02-15 12:40:34 +01:00
The major point of NMDedupMultiIndex is that it can de-duplicate the objects. It thus makes sense the everybody is using the same instance. Make the multi-idx instance of NMPlatform configurable. This is not used outside of unit tests, because the daemon currently always creates one platform instance and everybody then re-uses the instance of the platform. While this is (currently) only used by tests, and that the performance optimization of de-duplicating is irrelevant for tests, this is still useful. The test can then check whether two separate NMPlatform objects shared the same instance and whether it was de-duplicated.
33 lines
1.3 KiB
C
33 lines
1.3 KiB
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
/*
|
|
* Copyright (C) 2012 Red Hat, Inc.
|
|
*/
|
|
|
|
#ifndef __NETWORKMANAGER_LINUX_PLATFORM_H__
|
|
#define __NETWORKMANAGER_LINUX_PLATFORM_H__
|
|
|
|
#include "nm-platform.h"
|
|
|
|
#define NM_TYPE_LINUX_PLATFORM (nm_linux_platform_get_type())
|
|
#define NM_LINUX_PLATFORM(obj) \
|
|
(_NM_G_TYPE_CHECK_INSTANCE_CAST((obj), NM_TYPE_LINUX_PLATFORM, NMLinuxPlatform))
|
|
#define NM_LINUX_PLATFORM_CLASS(klass) \
|
|
(G_TYPE_CHECK_CLASS_CAST((klass), NM_TYPE_LINUX_PLATFORM, NMLinuxPlatformClass))
|
|
#define NM_IS_LINUX_PLATFORM(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), NM_TYPE_LINUX_PLATFORM))
|
|
#define NM_IS_LINUX_PLATFORM_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), NM_TYPE_LINUX_PLATFORM))
|
|
#define NM_LINUX_PLATFORM_GET_CLASS(obj) \
|
|
(G_TYPE_INSTANCE_GET_CLASS((obj), NM_TYPE_LINUX_PLATFORM, NMLinuxPlatformClass))
|
|
|
|
typedef struct _NMLinuxPlatform NMLinuxPlatform;
|
|
typedef struct _NMLinuxPlatformClass NMLinuxPlatformClass;
|
|
|
|
GType nm_linux_platform_get_type(void);
|
|
|
|
struct _NMDedupMultiIndex;
|
|
|
|
NMPlatform *nm_linux_platform_new(struct _NMDedupMultiIndex *multi_idx,
|
|
gboolean log_with_ptr,
|
|
gboolean netns_support,
|
|
gboolean cache_tc);
|
|
|
|
#endif /* __NETWORKMANAGER_LINUX_PLATFORM_H__ */
|