Files
NetworkManager/shared/nm-glib-aux/nm-keyfile-aux.h
Thomas Haller b0693863c1 shared: add NMKeyFileDB API
It will be used for "/var/lib/NetworkManager/seen-bssids" and
"/var/lib/NetworkManager/timestamps" which currently is implemented
in NMSettingConnection.
2019-05-07 16:41:21 +02:00

79 lines
2.9 KiB
C

/* 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__ */