/*
Authors:
Pavel Březina <pbrezina@redhat.com>
Copyright (C) 2014 Red Hat
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program 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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef SSS_SIFP_PRIVATE_H_
#define SSS_SIFP_PRIVATE_H_
#include "lib/sifp/sss_sifp.h"
do { \
} while (0)
struct sss_sifp_ctx {
void *alloc_pvt;
};
enum sss_sifp_attr_type {
};
/**
* D-Bus object attribute
*/
struct sss_sifp_attr {
char *name;
unsigned int num_values;
union {
bool *boolean;
char **str;
} data;
};
void
char *
const char *str);
char *
const char *str1,
const char *str2);
const char *name,
sss_sifp_attr ***_attrs);
sss_sifp_attr ***_attrs);
char **_object_path);
char ***_object_paths);
#endif /* SSS_SIFP_PRIVATE_H_ */