GNUnet  0.19.4
gnunet-service-messenger_service.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_SERVICE_MESSENGER_SERVICE_H
27 #define GNUNET_SERVICE_MESSENGER_SERVICE_H
28 
29 #include "platform.h"
31 #include "gnunet_util_lib.h"
33 
36 
39 
41 
43 {
46 
48 
49  char *dir;
50 
52 
55 
57 
59 };
60 
70  struct GNUNET_SERVICE_Handle *service_handle);
71 
77 void
79 
88 
97 
107  struct GNUNET_MQ_Handle *mq);
108 
115 void
118 
127 int
129  struct GNUNET_PeerIdentity *peer);
130 
141  const struct GNUNET_HashCode *key);
142 
152 int
155  const struct GNUNET_HashCode *key);
156 
170 int
173  const struct GNUNET_PeerIdentity *door,
174  const struct GNUNET_HashCode *key);
175 
188 int
191  const struct GNUNET_HashCode *key);
192 
203 void
205  struct GNUNET_MESSENGER_SrvRoom *room,
206  const struct GNUNET_MESSENGER_MemberSession *session,
207  const struct GNUNET_MESSENGER_Message *message,
208  const struct GNUNET_HashCode *hash);
209 
210 #endif //GNUNET_SERVICE_MESSENGER_SERVICE_H
struct GNUNET_MQ_Handle * mq
Definition: 003.c:5
struct GNUNET_HashCode key
The key used in the DHT.
static struct GNUNET_DNS_Handle * handle
Handle to transport service.
static struct GNUNET_SERVICE_Handle * service
Handle to our service instance.
GNUnet MESSENGER service.
GNUnet MESSENGER service.
void remove_service_handle(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvHandle *handle)
Removes a handle from a service and destroys it.
struct GNUNET_MESSENGER_SrvHandle * add_service_handle(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MQ_Handle *mq)
Creates and adds a new handle to a service using a given message queue.
void destroy_service(struct GNUNET_MESSENGER_Service *service)
Destroys a service and frees its memory fully.
int entry_service_room(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_PeerIdentity *door, const struct GNUNET_HashCode *key)
Tries to enter a room using a given key for a service by a specific handle.
struct GNUNET_MESSENGER_SrvRoom * get_service_room(const struct GNUNET_MESSENGER_Service *service, const struct GNUNET_HashCode *key)
Returns the room identified by a given key for a service.
void handle_service_message(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash)
Sends a received or sent message with a given hash to each handle of a service which is currently mem...
struct GNUNET_MESSENGER_EgoStore * get_service_ego_store(struct GNUNET_MESSENGER_Service *service)
Returns the used EGO-store of a given service.
struct GNUNET_MESSENGER_Service * create_service(const struct GNUNET_CONFIGURATION_Handle *config, struct GNUNET_SERVICE_Handle *service_handle)
Creates and allocates a new service using a given config and a GNUnet service handle.
int open_service_room(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key)
Tries to open a room using a given key for a service by a specific handle.
int close_service_room(struct GNUNET_MESSENGER_Service *service, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key)
Tries to close a room using a given key for a service by a specific handle.
int get_service_peer_identity(const struct GNUNET_MESSENGER_Service *service, struct GNUNET_PeerIdentity *peer)
Tries to write the peer identity of the peer running a service on to the peer parameter.
struct GNUNET_MESSENGER_ContactStore * get_service_contact_store(struct GNUNET_MESSENGER_Service *service)
Returns the used contact store of a given service.
static const struct GNUNET_CONFIGURATION_Handle * config
Configuration API.
Identity service; implements identity management for GNUnet.
messenger api: client implementation of GNUnet MESSENGER service
Opaque handle to the service.
Definition: cadet_api.c:39
Internal representation of the hash map.
A 512-bit hashcode.
struct GNUNET_MESSENGER_ContactStore contact_store
struct GNUNET_CONTAINER_MultiHashMap * rooms
struct GNUNET_SCHEDULER_Task * shutdown
struct GNUNET_CADET_Handle * cadet
struct GNUNET_MESSENGER_ListHandles handles
const struct GNUNET_CONFIGURATION_Handle * config
struct GNUNET_SERVICE_Handle * service
struct GNUNET_MESSENGER_EgoStore ego_store
Handle to a message queue.
Definition: mq.c:87
The identity of the host (wraps the signing key of the peer).
Entry in list of pending tasks.
Definition: scheduler.c:136
Handle to a service.
Definition: service.c:118
struct GNUNET_TESTBED_Peer * peer
The peer associated with this model.