aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Wachs <wachs@net.in.tum.de>2013-04-08 15:14:29 +0000
committerMatthias Wachs <wachs@net.in.tum.de>2013-04-08 15:14:29 +0000
commit09ace7389b948cb81e6022504957011976ff0991 (patch)
tree4c76112f4267239e943ab7af4b92da045efb62c5
parentfc7e586bfc47ea6854822c49875b553069d60c98 (diff)
downloadgnunet-09ace7389b948cb81e6022504957011976ff0991.tar.gz
gnunet-09ace7389b948cb81e6022504957011976ff0991.zip
additional struct
-rw-r--r--src/peerinfo/gnunet-service-peerinfo.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/peerinfo/gnunet-service-peerinfo.c b/src/peerinfo/gnunet-service-peerinfo.c
index dcdc38570..26e54f320 100644
--- a/src/peerinfo/gnunet-service-peerinfo.c
+++ b/src/peerinfo/gnunet-service-peerinfo.c
@@ -65,6 +65,11 @@ struct HostEntry
65 */ 65 */
66 struct GNUNET_HELLO_Message *hello; 66 struct GNUNET_HELLO_Message *hello;
67 67
68 /**
69 * Friend only hello for the peer (can be NULL)
70 */
71 struct GNUNET_HELLO_Message *friend_only_hello;
72
68}; 73};
69 74
70/** 75/**