aboutsummaryrefslogtreecommitdiff
path: root/src/core/test_core_api_start_only.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2010-01-21 18:32:42 +0000
committerChristian Grothoff <christian@grothoff.org>2010-01-21 18:32:42 +0000
commita72baac5158e9ad5b69c7e9af1144604e92689cc (patch)
treee4a1cb8d1c6d4edffe4639a6c4ffb1c4abe1eaa2 /src/core/test_core_api_start_only.c
parent8b62835d8e607d276ce0d1b2e288646e23bd440a (diff)
downloadgnunet-a72baac5158e9ad5b69c7e9af1144604e92689cc.tar.gz
gnunet-a72baac5158e9ad5b69c7e9af1144604e92689cc.zip
fixes
Diffstat (limited to 'src/core/test_core_api_start_only.c')
-rw-r--r--src/core/test_core_api_start_only.c12
1 files changed, 9 insertions, 3 deletions
diff --git a/src/core/test_core_api_start_only.c b/src/core/test_core_api_start_only.c
index 8b5e867bc..8994b31a7 100644
--- a/src/core/test_core_api_start_only.c
+++ b/src/core/test_core_api_start_only.c
@@ -71,7 +71,9 @@ static int ok;
71 71
72static void 72static void
73connect_notify (void *cls, 73connect_notify (void *cls,
74 const struct GNUNET_PeerIdentity *peer) 74 const struct GNUNET_PeerIdentity *peer,
75 struct GNUNET_TIME_Relative latency,
76 uint32_t distance)
75{ 77{
76} 78}
77 79
@@ -86,7 +88,9 @@ disconnect_notify (void *cls,
86static int 88static int
87inbound_notify (void *cls, 89inbound_notify (void *cls,
88 const struct GNUNET_PeerIdentity *other, 90 const struct GNUNET_PeerIdentity *other,
89 const struct GNUNET_MessageHeader *message) 91 const struct GNUNET_MessageHeader *message,
92 struct GNUNET_TIME_Relative latency,
93 uint32_t distance)
90{ 94{
91 return GNUNET_OK; 95 return GNUNET_OK;
92} 96}
@@ -95,7 +99,9 @@ inbound_notify (void *cls,
95static int 99static int
96outbound_notify (void *cls, 100outbound_notify (void *cls,
97 const struct GNUNET_PeerIdentity *other, 101 const struct GNUNET_PeerIdentity *other,
98 const struct GNUNET_MessageHeader *message) 102 const struct GNUNET_MessageHeader *message,
103 struct GNUNET_TIME_Relative latency,
104 uint32_t distance)
99{ 105{
100 return GNUNET_OK; 106 return GNUNET_OK;
101} 107}