diff options
author | Nikias Bassen | 2013-12-13 04:35:44 +0100 |
---|---|---|
committer | Nikias Bassen | 2013-12-13 04:35:44 +0100 |
commit | c168c3c7746e51fef4ec748a3982553833bb0c4e (patch) | |
tree | 927567acde881f84bdd3b40caf7dd095952423ad /src/conf.h | |
parent | 3537f78a98111b88aab5e2d94dda340cf09be5af (diff) | |
download | usbmuxd-c168c3c7746e51fef4ec748a3982553833bb0c4e.tar.gz usbmuxd-c168c3c7746e51fef4ec748a3982553833bb0c4e.tar.bz2 |
add support for reading and writing config and pair record files
Diffstat (limited to 'src/conf.h')
-rw-r--r-- | src/conf.h | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/src/conf.h b/src/conf.h new file mode 100644 index 0000000..a104185 --- /dev/null +++ b/src/conf.h @@ -0,0 +1,40 @@ +/* + usbmuxd - iPhone/iPod Touch USB multiplex server daemon + +Copyright (C) 2013 Nikias Bassen <nikias@gmx.li> + +This program is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 2 or version 3. + +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, write to the Free Software +Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + +*/ + +#ifndef __CONF_H__ +#define __CONF_H__ + +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif + +#include <plist/plist.h> + +const char *config_get_config_dir(); + +void config_get_system_buid(char **system_buid); + +int config_get_device_record(const char *udid, char **record_data, uint64_t *record_size); +int config_set_device_record(const char *udid, char* record_data, uint64_t record_size); +int config_remove_device_record(const char *udid); + +void config_device_record_get_host_id(const char *udid, char **host_id); + +#endif |