aboutsummaryrefslogtreecommitdiff
path: root/src/messenger/gnunet-service-messenger_message_send.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/messenger/gnunet-service-messenger_message_send.c')
-rw-r--r--src/messenger/gnunet-service-messenger_message_send.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/messenger/gnunet-service-messenger_message_send.c b/src/messenger/gnunet-service-messenger_message_send.c
index 8cc2466d7..5cb3cd627 100644
--- a/src/messenger/gnunet-service-messenger_message_send.c
+++ b/src/messenger/gnunet-service-messenger_message_send.c
@@ -1,6 +1,6 @@
1/* 1/*
2 This file is part of GNUnet. 2 This file is part of GNUnet.
3 Copyright (C) 2020--2021 GNUnet e.V. 3 Copyright (C) 2020--2022 GNUnet e.V.
4 4
5 GNUnet is free software: you can redistribute it and/or modify it 5 GNUnet is free software: you can redistribute it and/or modify it
6 under the terms of the GNU Affero General Public License as published 6 under the terms of the GNU Affero General Public License as published
@@ -35,7 +35,7 @@ send_message_join (struct GNUNET_MESSENGER_SrvRoom *room,
35 const struct GNUNET_MESSENGER_Message *message, 35 const struct GNUNET_MESSENGER_Message *message,
36 const struct GNUNET_HashCode *hash) 36 const struct GNUNET_HashCode *hash)
37{ 37{
38 check_room_peer_status(room, NULL); 38 check_srv_room_peer_status(room, NULL);
39} 39}
40 40
41void 41void
@@ -56,7 +56,7 @@ send_message_id (struct GNUNET_MESSENGER_SrvRoom *room,
56 const struct GNUNET_MESSENGER_Message *message, 56 const struct GNUNET_MESSENGER_Message *message,
57 const struct GNUNET_HashCode *hash) 57 const struct GNUNET_HashCode *hash)
58{ 58{
59 change_handle_member_id (handle, get_room_key(room), &(message->body.id.id)); 59 change_srv_handle_member_id (handle, get_srv_room_key(room), &(message->body.id.id));
60} 60}
61 61
62void 62void
@@ -65,7 +65,7 @@ send_message_request (struct GNUNET_MESSENGER_SrvRoom *room,
65 const struct GNUNET_MESSENGER_Message *message, 65 const struct GNUNET_MESSENGER_Message *message,
66 const struct GNUNET_HashCode *hash) 66 const struct GNUNET_HashCode *hash)
67{ 67{
68 struct GNUNET_MESSENGER_OperationStore *operation_store = get_room_operation_store(room); 68 struct GNUNET_MESSENGER_OperationStore *operation_store = get_srv_room_operation_store(room);
69 69
70 use_store_operation( 70 use_store_operation(
71 operation_store, 71 operation_store,