diff options
author | Nikias Bassen | 2009-09-10 13:28:13 +0200 |
---|---|---|
committer | Martin Szulecki | 2009-09-12 11:41:38 +0200 |
commit | 1f6282ffddec7012df82fa929dfe72cfc74b063a (patch) | |
tree | 452c927c07806855f360ee9803111a1f72e05d3c /src/userpref.h | |
parent | 26ce10634d277df51c4e9c2bd61b409df3f5b060 (diff) | |
download | libimobiledevice-1f6282ffddec7012df82fa929dfe72cfc74b063a.tar.gz libimobiledevice-1f6282ffddec7012df82fa929dfe72cfc74b063a.tar.bz2 |
Public API rework, extension and adaption to latest libusbmuxd-1.0 API.
Diffstat (limited to 'src/userpref.h')
-rw-r--r-- | src/userpref.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/userpref.h b/src/userpref.h index 414c093..fcb8b62 100644 --- a/src/userpref.h +++ b/src/userpref.h @@ -36,8 +36,8 @@ typedef int16_t userpref_error_t; 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); +userpref_error_t userpref_set_device_public_key(const char *uuid, gnutls_datum_t public_key); +int userpref_has_device_public_key(const char *uuid); void userpref_get_host_id(char **host_id); #endif |