aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMatthias Wachs <wachs@net.in.tum.de>2013-03-28 15:24:59 +0000
committerMatthias Wachs <wachs@net.in.tum.de>2013-03-28 15:24:59 +0000
commita55b2de0863937cfe9c0fcbf41882b81f4c82c9c (patch)
treea67b31d91012d6333de2541a91fb6c15ce32e22b /src
parentb3883971cd31d198dbd768fffb15960dff0352a6 (diff)
downloadgnunet-a55b2de0863937cfe9c0fcbf41882b81f4c82c9c.tar.gz
gnunet-a55b2de0863937cfe9c0fcbf41882b81f4c82c9c.zip
change type
Diffstat (limited to 'src')
-rw-r--r--src/hello/hello.c6
-rw-r--r--src/include/gnunet_hello_lib.h17
2 files changed, 11 insertions, 12 deletions
diff --git a/src/hello/hello.c b/src/hello/hello.c
index 066c03d87..3f0f9dd54 100644
--- a/src/hello/hello.c
+++ b/src/hello/hello.c
@@ -111,11 +111,11 @@ struct GNUNET_HELLO_ParseUriContext
111 */ 111 */
112 112
113uint16_t 113uint16_t
114GNUNET_HELLO_get_type (const struct GNUNET_MessageHeader *h) 114GNUNET_HELLO_get_type (const struct GNUNET_HELLO_Message *h)
115{ 115{
116 if (GNUNET_MESSAGE_TYPE_HELLO == ntohs(h->type)) 116 if (GNUNET_MESSAGE_TYPE_HELLO == ntohs(h->header.type))
117 return GNUNET_MESSAGE_TYPE_HELLO; 117 return GNUNET_MESSAGE_TYPE_HELLO;
118 if (GNUNET_MESSAGE_TYPE_FRIEND_HELLO == ntohs(h->type)) 118 if (GNUNET_MESSAGE_TYPE_FRIEND_HELLO == ntohs(h->header.type))
119 return GNUNET_MESSAGE_TYPE_FRIEND_HELLO; 119 return GNUNET_MESSAGE_TYPE_FRIEND_HELLO;
120 return 0; 120 return 0;
121} 121}
diff --git a/src/include/gnunet_hello_lib.h b/src/include/gnunet_hello_lib.h
index 897b84274..d62638c14 100644
--- a/src/include/gnunet_hello_lib.h
+++ b/src/include/gnunet_hello_lib.h
@@ -83,15 +83,6 @@ struct GNUNET_HELLO_Address
83 83
84 84
85/** 85/**
86 * Return HELLO type
87 *
88 * @param h HELLO Message to test
89 * @param GNUNET_MESSAGE_TYPE_HELLO or GNUNET_MESSAGE_TYPE_FRIEND_HELLO or 0 on error
90 */
91uint16_t
92GNUNET_HELLO_get_type (const struct GNUNET_MessageHeader *h);
93
94/**
95 * Allocate an address struct. 86 * Allocate an address struct.
96 * 87 *
97 * @param peer the peer 88 * @param peer the peer
@@ -154,6 +145,14 @@ GNUNET_HELLO_address_get_size (const struct GNUNET_HELLO_Address *address);
154 */ 145 */
155struct GNUNET_HELLO_Message; 146struct GNUNET_HELLO_Message;
156 147
148/**
149 * Return HELLO type
150 *
151 * @param h HELLO Message to test
152 * @param GNUNET_MESSAGE_TYPE_HELLO or GNUNET_MESSAGE_TYPE_FRIEND_HELLO or 0 on error
153 */
154uint16_t
155GNUNET_HELLO_get_type (const struct GNUNET_HELLO_Message *h);
157 156
158/** 157/**
159 * Copy the given address information into 158 * Copy the given address information into