aboutsummaryrefslogtreecommitdiff
path: root/src/messenger/messenger_api_contact.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/messenger/messenger_api_contact.c')
-rw-r--r--src/messenger/messenger_api_contact.c108
1 files changed, 0 insertions, 108 deletions
diff --git a/src/messenger/messenger_api_contact.c b/src/messenger/messenger_api_contact.c
deleted file mode 100644
index 04e1f60c1..000000000
--- a/src/messenger/messenger_api_contact.c
+++ /dev/null
@@ -1,108 +0,0 @@
1/*
2 This file is part of GNUnet.
3 Copyright (C) 2020--2021 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/messenger_api_contact.c
23 * @brief messenger api: client implementation of GNUnet MESSENGER service
24 */
25
26#include "messenger_api_contact.h"
27
28struct GNUNET_MESSENGER_Contact*
29create_contact (const struct GNUNET_IDENTITY_PublicKey *key)
30{
31 GNUNET_assert(key);
32
33 struct GNUNET_MESSENGER_Contact *contact = GNUNET_new(struct GNUNET_MESSENGER_Contact);
34
35 contact->name = NULL;
36 contact->rc = 0;
37
38 GNUNET_memcpy(&(contact->public_key), key, sizeof(contact->public_key));
39
40 return contact;
41}
42
43void
44destroy_contact (struct GNUNET_MESSENGER_Contact *contact)
45{
46 GNUNET_assert(contact);
47
48 if (contact->name)
49 GNUNET_free(contact->name);
50
51 GNUNET_free(contact);
52}
53
54const char*
55get_contact_name (const struct GNUNET_MESSENGER_Contact *contact)
56{
57 GNUNET_assert(contact);
58
59 return contact->name;
60}
61
62void
63set_contact_name (struct GNUNET_MESSENGER_Contact *contact, const char *name)
64{
65 GNUNET_assert(contact);
66
67 if (contact->name)
68 GNUNET_free(contact->name);
69
70 contact->name = name ? GNUNET_strdup(name) : NULL;
71}
72
73const struct GNUNET_IDENTITY_PublicKey*
74get_contact_key (const struct GNUNET_MESSENGER_Contact *contact)
75{
76 GNUNET_assert(contact);
77
78 return &(contact->public_key);
79}
80
81void
82increase_contact_rc (struct GNUNET_MESSENGER_Contact *contact)
83{
84 GNUNET_assert(contact);
85
86 contact->rc++;
87}
88
89int
90decrease_contact_rc (struct GNUNET_MESSENGER_Contact *contact)
91{
92 GNUNET_assert(contact);
93
94 if (contact->rc > 0)
95 contact->rc--;
96
97 return contact->rc ? GNUNET_NO : GNUNET_YES;
98}
99
100void
101get_context_from_member (const struct GNUNET_HashCode *key, const struct GNUNET_ShortHashCode *id,
102 struct GNUNET_HashCode *context)
103{
104 GNUNET_assert((key) && (id) && (context));
105
106 GNUNET_CRYPTO_hash (id, sizeof(*id), context);
107 GNUNET_CRYPTO_hash_xor (key, context, context);
108}