aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_hello_lib.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/gnunet_hello_lib.h')
-rw-r--r--src/include/gnunet_hello_lib.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/include/gnunet_hello_lib.h b/src/include/gnunet_hello_lib.h
index 09f5f1c7d..ffddb0ba2 100644
--- a/src/include/gnunet_hello_lib.h
+++ b/src/include/gnunet_hello_lib.h
@@ -50,7 +50,7 @@ struct GNUNET_HELLO_Address
50 50
51 /** 51 /**
52 * For which peer is this an address? 52 * For which peer is this an address?
53 */ 53 */
54 struct GNUNET_PeerIdentity peer; 54 struct GNUNET_PeerIdentity peer;
55 55
56 /** 56 /**
@@ -83,9 +83,8 @@ struct GNUNET_HELLO_Address
83 */ 83 */
84struct GNUNET_HELLO_Address * 84struct GNUNET_HELLO_Address *
85GNUNET_HELLO_address_allocate (const struct GNUNET_PeerIdentity *peer, 85GNUNET_HELLO_address_allocate (const struct GNUNET_PeerIdentity *peer,
86 const char *transport_name, 86 const char *transport_name, const void *address,
87 const void *address, 87 size_t address_length);
88 size_t address_length);
89 88
90 89
91/** 90/**
@@ -108,7 +107,7 @@ GNUNET_HELLO_address_copy (const struct GNUNET_HELLO_Address *address);
108 */ 107 */
109int 108int
110GNUNET_HELLO_address_cmp (const struct GNUNET_HELLO_Address *a1, 109GNUNET_HELLO_address_cmp (const struct GNUNET_HELLO_Address *a1,
111 const struct GNUNET_HELLO_Address *a2); 110 const struct GNUNET_HELLO_Address *a2);
112 111
113 112
114/** 113/**
@@ -122,7 +121,7 @@ GNUNET_HELLO_address_get_size (const struct GNUNET_HELLO_Address *address);
122 121
123/** 122/**
124 * Free an address. 123 * Free an address.
125 * 124 *
126 * @param addr address to free 125 * @param addr address to free
127 */ 126 */
128#define GNUNET_HELLO_address_free(addr) GNUNET_free(addr) 127#define GNUNET_HELLO_address_free(addr) GNUNET_free(addr)
@@ -150,8 +149,7 @@ struct GNUNET_HELLO_Message;
150 */ 149 */
151size_t 150size_t
152GNUNET_HELLO_add_address (const struct GNUNET_HELLO_Address *address, 151GNUNET_HELLO_add_address (const struct GNUNET_HELLO_Address *address,
153 struct GNUNET_TIME_Absolute expiration, 152 struct GNUNET_TIME_Absolute expiration, char *target,
154 char *target,
155 size_t max); 153 size_t max);
156 154
157 155
@@ -240,9 +238,11 @@ GNUNET_HELLO_equals (const struct GNUNET_HELLO_Message *h1,
240 * GNUNET_NO to delete it from the HELLO 238 * GNUNET_NO to delete it from the HELLO
241 * GNUNET_SYSERR to stop iterating (but keep current address) 239 * GNUNET_SYSERR to stop iterating (but keep current address)
242 */ 240 */
243typedef int (*GNUNET_HELLO_AddressIterator) (void *cls, 241typedef int (*GNUNET_HELLO_AddressIterator) (void *cls,
244 const struct GNUNET_HELLO_Address *address, 242 const struct GNUNET_HELLO_Address *
245 struct GNUNET_TIME_Absolute expiration); 243 address,
244 struct GNUNET_TIME_Absolute
245 expiration);
246 246
247 247
248/** 248/**