aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Schanzenbach <mschanzenbach@posteo.de>2012-08-29 11:24:49 +0000
committerMartin Schanzenbach <mschanzenbach@posteo.de>2012-08-29 11:24:49 +0000
commitbc7d3adbc732f732ddbac13f295adc0f87449596 (patch)
treedb878935787d60462db21631494c8ac552bcfd07
parent41a01680ece436ab8d3c481440abcc69d8c99777 (diff)
downloadgnunet-bc7d3adbc732f732ddbac13f295adc0f87449596.tar.gz
gnunet-bc7d3adbc732f732ddbac13f295adc0f87449596.zip
-change vpn wire data format
-rw-r--r--src/include/gns_protocol.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/include/gns_protocol.h b/src/include/gns_protocol.h
index ad80f85ff..f713795b0 100644
--- a/src/include/gns_protocol.h
+++ b/src/include/gns_protocol.h
@@ -144,14 +144,14 @@ struct tlsa_data
144struct vpn_data 144struct vpn_data
145{ 145{
146 /** 146 /**
147 * The protocol to use 147 * The peer to contact
148 */ 148 */
149 uint16_t proto; 149 struct GNUNET_HashCode peer;
150 150
151 /** 151 /**
152 * The peer to contact 152 * The protocol to use
153 */ 153 */
154 struct GNUNET_HashCode peer; 154 uint16_t proto;
155 155
156 /* followed by the servicename */ 156 /* followed by the servicename */
157}; 157};