1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
/* NetworkManager -- Network link manager
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301 USA.
*
* (C) Copyright 2019 Red Hat, Inc.
*/
#ifndef __NM_KEYFILE_AUX_H__
#define __NM_KEYFILE_AUX_H__
/*****************************************************************************/
typedef struct _NMKeyFileDB NMKeyFileDB;
typedef void (*NMKeyFileDBLogFcn) (NMKeyFileDB *self,
int syslog_level,
gpointer user_data,
const char *fmt,
...) G_GNUC_PRINTF (4, 5);
typedef void (*NMKeyFileDBGotDirtyFcn) (NMKeyFileDB *self,
gpointer user_data);
NMKeyFileDB *nm_key_file_db_new (const char *filename,
const char *group,
NMKeyFileDBLogFcn log_fcn,
NMKeyFileDBGotDirtyFcn got_dirty_fcn,
gpointer user_data);
void nm_key_file_db_start (NMKeyFileDB *self);
NMKeyFileDB *nm_key_file_db_ref (NMKeyFileDB *self);
void nm_key_file_db_unref (NMKeyFileDB *self);
void nm_key_file_db_destroy (NMKeyFileDB *self);
const char *nm_key_file_db_get_filename (NMKeyFileDB *self);
gboolean nm_key_file_db_is_dirty (NMKeyFileDB *self);
char *nm_key_file_db_get_value (NMKeyFileDB *self,
const char *key);
char **nm_key_file_db_get_string_list (NMKeyFileDB *self,
const char *key,
gsize *out_len);
void nm_key_file_db_remove_key (NMKeyFileDB *self,
const char *key);
void nm_key_file_db_set_value (NMKeyFileDB *self,
const char *key,
const char *value);
void nm_key_file_db_set_string_list (NMKeyFileDB *self,
const char *key,
const char *const*value,
gssize len);
void nm_key_file_db_to_file (NMKeyFileDB *self,
gboolean force);
/*****************************************************************************/
#endif /* __NM_KEYFILE_AUX_H__ */
|