diff options
author | Martin Szulecki | 2009-07-25 01:39:35 +0200 |
---|---|---|
committer | Martin Szulecki | 2009-07-25 01:39:35 +0200 |
commit | 66695e6b7db9457d5ecfe6f4f6624dc195e5274d (patch) | |
tree | ab5c432974cc2c54b5554b050879a2e3975ae6b8 /src/userpref.h | |
parent | 028646335acca403cc8a601d77c2272e077445e0 (diff) | |
download | libimobiledevice-66695e6b7db9457d5ecfe6f4f6624dc195e5274d.tar.gz libimobiledevice-66695e6b7db9457d5ecfe6f4f6624dc195e5274d.tar.bz2 |
Improve API of userpref system
Diffstat (limited to 'src/userpref.h')
-rw-r--r-- | src/userpref.h | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/src/userpref.h b/src/userpref.h index deced04..414c093 100644 --- a/src/userpref.h +++ b/src/userpref.h @@ -23,19 +23,21 @@ #define USERPREF_H #include <gnutls/gnutls.h> -#include "libiphone/libiphone.h" +#define USERPREF_E_SUCCESS 0 +#define USERPREF_E_INVALID_ARG -1 +#define USERPREF_E_INVALID_CONF -2 +#define USERPREF_E_SSL_ERROR -3 -iphone_error_t get_keys_and_certs(gnutls_x509_privkey_t root_privkey, gnutls_x509_crt_t root_crt, gnutls_x509_privkey_t host_privkey, gnutls_x509_crt_t host_crt); +#define USERPREF_E_UNKNOWN_ERROR -256 -iphone_error_t get_certs_as_pem(gnutls_datum_t *pem_root_cert, gnutls_datum_t *pem_host_cert); +typedef int16_t userpref_error_t; -char *get_host_id(void); +userpref_error_t userpref_get_keys_and_certs(gnutls_x509_privkey_t root_privkey, gnutls_x509_crt_t root_crt, gnutls_x509_privkey_t host_privkey, gnutls_x509_crt_t host_crt); +userpref_error_t userpref_set_keys_and_certs(gnutls_datum_t * root_key, gnutls_datum_t * root_cert, gnutls_datum_t * host_key, gnutls_datum_t * host_cert); +userpref_error_t userpref_get_certs_as_pem(gnutls_datum_t *pem_root_cert, gnutls_datum_t *pem_host_cert); +userpref_error_t userpref_set_device_public_key(char *uuid, gnutls_datum_t public_key); +int userpref_has_device_public_key(char *uuid); +void userpref_get_host_id(char **host_id); -int is_device_known(char *uid); - -int store_device_public_key(char *uid, gnutls_datum_t public_key); - -int init_config_file( gnutls_datum_t * root_key, gnutls_datum_t * host_key, gnutls_datum_t * root_cert, - gnutls_datum_t * host_cert); #endif |