blob: 9319a0647f71d98d16b664439e284da254250a69 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// SPDX-License-Identifier: GPL-2.0+
/*
* Copyright (C) 2008 Red Hat, Inc.
*/
#ifndef __NMS_IFCFG_RH_READER_H__
#define __NMS_IFCFG_RH_READER_H__
#include "nm-connection.h"
NMConnection *connection_from_file (const char *filename,
char **out_unhandled,
GError **error,
gboolean *out_ignore_error);
NMConnection *nmtst_connection_from_file (const char *filename,
const char *network_file,
const char *test_type,
char **out_unhandled,
GError **error);
#endif /* __NMS_IFCFG_RH_READER_H__ */
|