aboutsummaryrefslogtreecommitdiff
path: root/src/psyc
diff options
context:
space:
mode:
authorGabor X Toth <*@tg-x.net>2015-09-26 17:09:48 +0000
committerGabor X Toth <*@tg-x.net>2015-09-26 17:09:48 +0000
commit0c5cea1c26efb8b53f643a6ce6b162d9c9fe2b8f (patch)
treeda1f58068d54688c560c2cb464dc8ce4053874a1 /src/psyc
parent68e2709a38f9c481f96024138a6f9ae57a280a57 (diff)
downloadgnunet-0c5cea1c26efb8b53f643a6ce6b162d9c9fe2b8f.tar.gz
gnunet-0c5cea1c26efb8b53f643a6ce6b162d9c9fe2b8f.zip
psycstore: add fragment_limit arg for message_get
Diffstat (limited to 'src/psyc')
-rw-r--r--src/psyc/gnunet-service-psyc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/psyc/gnunet-service-psyc.c b/src/psyc/gnunet-service-psyc.c
index 1f7e7c23c..3671a7d6f 100644
--- a/src/psyc/gnunet-service-psyc.c
+++ b/src/psyc/gnunet-service-psyc.c
@@ -926,7 +926,7 @@ mcast_recv_replay_message (void *cls,
926{ 926{
927 struct Channel *chn = cls; 927 struct Channel *chn = cls;
928 GNUNET_PSYCSTORE_message_get (store, &chn->pub_key, slave_key, 928 GNUNET_PSYCSTORE_message_get (store, &chn->pub_key, slave_key,
929 message_id, message_id, NULL, 929 message_id, message_id, 1, NULL,
930 &store_recv_fragment_replay, 930 &store_recv_fragment_replay,
931 &store_recv_fragment_replay_result, rh); 931 &store_recv_fragment_replay_result, rh);
932} 932}
@@ -2432,7 +2432,7 @@ client_recv_history_replay (void *cls, struct GNUNET_SERVER_Client *client,
2432 GNUNET_PSYCSTORE_message_get (store, &chn->pub_key, NULL, 2432 GNUNET_PSYCSTORE_message_get (store, &chn->pub_key, NULL,
2433 GNUNET_ntohll (req->start_message_id), 2433 GNUNET_ntohll (req->start_message_id),
2434 GNUNET_ntohll (req->end_message_id), 2434 GNUNET_ntohll (req->end_message_id),
2435 method_prefix, 2435 0, method_prefix,
2436 &store_recv_fragment_history, 2436 &store_recv_fragment_history,
2437 &store_recv_fragment_history_result, op); 2437 &store_recv_fragment_history_result, op);
2438 else 2438 else