aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_credential_service.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2017-02-21 22:47:41 +0100
committerChristian Grothoff <christian@grothoff.org>2017-02-21 22:47:41 +0100
commit3b977cf34b5edb9f7640ad8373b44f5a2c02308a (patch)
tree3fc6c27052cb2d6c492b22a4a18c16f0f3799995 /src/include/gnunet_credential_service.h
parent647d88d649c267220feb8b5f53ec3e96359a72fc (diff)
downloadgnunet-3b977cf34b5edb9f7640ad8373b44f5a2c02308a.tar.gz
gnunet-3b977cf34b5edb9f7640ad8373b44f5a2c02308a.zip
fix misc typos
Diffstat (limited to 'src/include/gnunet_credential_service.h')
-rw-r--r--src/include/gnunet_credential_service.h19
1 files changed, 10 insertions, 9 deletions
diff --git a/src/include/gnunet_credential_service.h b/src/include/gnunet_credential_service.h
index 99d416169..9e765c12b 100644
--- a/src/include/gnunet_credential_service.h
+++ b/src/include/gnunet_credential_service.h
@@ -80,12 +80,13 @@ GNUNET_CREDENTIAL_disconnect (struct GNUNET_CREDENTIAL_Handle *handle);
80 * @param cls closure 80 * @param cls closure
81 * @param issuer the issuer chain 81 * @param issuer the issuer chain
82 * @param issuer_len length of issuer chain 82 * @param issuer_len length of issuer chain
83 * @param rd the records in reply 83 * @param value the value returned
84 */ 84 */
85typedef void (*GNUNET_CREDENTIAL_LookupResultProcessor) (void *cls, 85typedef void
86 struct GNUNET_IDENTITY_Ego *issuer, 86(*GNUNET_CREDENTIAL_LookupResultProcessor) (void *cls,
87 uint16_t issuer_len, 87 struct GNUNET_IDENTITY_Ego *issuer,
88 const struct GNUNET_CREDENTIAL_Value *value); 88 uint16_t issuer_len,
89 const struct GNUNET_CREDENTIAL_Value *value);
89 90
90 91
91/** 92/**
@@ -100,10 +101,10 @@ typedef void (*GNUNET_CREDENTIAL_LookupResultProcessor) (void *cls,
100 */ 101 */
101struct GNUNET_CREDENTIAL_LookupRequest * 102struct GNUNET_CREDENTIAL_LookupRequest *
102GNUNET_CREDENTIAL_lookup (struct GNUNET_CREDENTIAL_Handle *handle, 103GNUNET_CREDENTIAL_lookup (struct GNUNET_CREDENTIAL_Handle *handle,
103 const char *credential, 104 const char *credential,
104 const struct GNUNET_IDENTITY_Ego *subject, 105 const struct GNUNET_IDENTITY_Ego *subject,
105 GNUNET_CREDENTIAL_LookupResultProcessor proc, 106 GNUNET_CREDENTIAL_LookupResultProcessor proc,
106 void *proc_cls); 107 void *proc_cls);
107 108
108 109
109/** 110/**