aboutsummaryrefslogtreecommitdiff
path: root/src/service/messenger/gnunet-service-messenger_message_state.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/service/messenger/gnunet-service-messenger_message_state.h')
-rw-r--r--src/service/messenger/gnunet-service-messenger_message_state.h66
1 files changed, 66 insertions, 0 deletions
diff --git a/src/service/messenger/gnunet-service-messenger_message_state.h b/src/service/messenger/gnunet-service-messenger_message_state.h
new file mode 100644
index 000000000..9723c7654
--- /dev/null
+++ b/src/service/messenger/gnunet-service-messenger_message_state.h
@@ -0,0 +1,66 @@
1/*
2 This file is part of GNUnet.
3 Copyright (C) 2020--2024 GNUnet e.V.
4
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
7 by the Free Software Foundation, either version 3 of the License,
8 or (at your option) any later version.
9
10 GNUnet is distributed in the hope that it will be useful, but
11 WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Affero General Public License for more details.
14
15 You should have received a copy of the GNU Affero General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>.
17
18 SPDX-License-Identifier: AGPL3.0-or-later
19 */
20/**
21 * @author Tobias Frisch
22 * @file src/messenger/gnunet-service-messenger_message_state.h
23 * @brief GNUnet MESSENGER service
24 */
25
26#ifndef GNUNET_SERVICE_MESSENGER_MESSAGE_STATE_H
27#define GNUNET_SERVICE_MESSENGER_MESSAGE_STATE_H
28
29#include "gnunet_messenger_service.h"
30
31#include "gnunet-service-messenger_list_messages.h"
32
33struct GNUNET_MESSENGER_MessageState
34{
35 struct GNUNET_MESSENGER_ListMessages last_messages;
36};
37
38void
39init_message_state (struct GNUNET_MESSENGER_MessageState *state);
40
41void
42clear_message_state (struct GNUNET_MESSENGER_MessageState *state);
43
44void
45get_message_state_chain_hash (const struct GNUNET_MESSENGER_MessageState *state,
46 struct GNUNET_HashCode *hash);
47
48const struct GNUNET_HashCode*
49get_message_state_merge_hash (const struct
50 GNUNET_MESSENGER_MessageState *state);
51
52void
53update_message_state (struct GNUNET_MESSENGER_MessageState *state,
54 enum GNUNET_GenericReturnValue requested,
55 const struct GNUNET_MESSENGER_Message *message,
56 const struct GNUNET_HashCode *hash);
57
58void
59load_message_state (struct GNUNET_MESSENGER_MessageState *state,
60 const char *path);
61
62void
63save_message_state (const struct GNUNET_MESSENGER_MessageState *state,
64 const char *path);
65
66#endif //GNUNET_SERVICE_MESSENGER_MESSAGE_STATE_H