GNUnet  0.19.5
messenger_api_contact.h
Go to the documentation of this file.
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  */
26 #ifndef GNUNET_MESSENGER_API_CONTACT_H
27 #define GNUNET_MESSENGER_API_CONTACT_H
28 
29 #include "platform.h"
30 #include "gnunet_util_lib.h"
32 
34 {
35  char *name;
36  size_t rc;
37 
39 };
40 
49 
55 void
57 
64 const char*
65 get_contact_name (const struct GNUNET_MESSENGER_Contact *contact);
66 
73 void
75  const char *name);
76 
83 const struct GNUNET_IDENTITY_PublicKey*
84 get_contact_key (const struct GNUNET_MESSENGER_Contact *contact);
85 
91 void
93 
101 int
103 
111 void
113  const struct GNUNET_ShortHashCode *id,
114  struct GNUNET_HashCode *context);
115 
116 #endif //GNUNET_MESSENGER_API_CONTACT_H
struct GNUNET_HashCode key
The key used in the DHT.
static pa_context * context
Pulseaudio context.
Identity service; implements identity management for GNUnet.
void set_contact_name(struct GNUNET_MESSENGER_Contact *contact, const char *name)
Changes the current name of a given contact by copying it from the parameter name.
int decrease_contact_rc(struct GNUNET_MESSENGER_Contact *contact)
Decreases the reference counter if possible (can not underflow!) of a given contact and returns GNUNE...
struct GNUNET_MESSENGER_Contact * create_contact(const struct GNUNET_IDENTITY_PublicKey *key)
Creates and allocates a new contact with a given public key from an EGO.
void destroy_contact(struct GNUNET_MESSENGER_Contact *contact)
Destroys a contact and frees its memory fully.
void increase_contact_rc(struct GNUNET_MESSENGER_Contact *contact)
Increases the reference counter of a given contact which is zero as default.
void get_context_from_member(const struct GNUNET_HashCode *key, const struct GNUNET_ShortHashCode *id, struct GNUNET_HashCode *context)
Calculates the context hash of a member in a room and returns it.
const struct GNUNET_IDENTITY_PublicKey * get_contact_key(const struct GNUNET_MESSENGER_Contact *contact)
Returns the public key of a given contact.
const char * get_contact_name(const struct GNUNET_MESSENGER_Contact *contact)
Returns the current name of a given contact or NULL if no valid name was assigned yet.
const char * name
A 512-bit hashcode.
An identity key as per LSD0001.
struct GNUNET_IDENTITY_PublicKey public_key
A 256-bit hashcode.