aboutsummaryrefslogtreecommitdiff
path: root/src/core/gnunet-service-core_sessions.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2011-10-06 11:07:54 +0000
committerChristian Grothoff <christian@grothoff.org>2011-10-06 11:07:54 +0000
commit49cacc9a9eb5c4ac424a41533e9dcebbdf3f8af6 (patch)
tree5f46828b1d887b6b9d9131a01a6a622dff430121 /src/core/gnunet-service-core_sessions.h
parent9dac44e13d6b9093615ed2a0dd30c9f6d37d29ab (diff)
downloadgnunet-49cacc9a9eb5c4ac424a41533e9dcebbdf3f8af6.tar.gz
gnunet-49cacc9a9eb5c4ac424a41533e9dcebbdf3f8af6.zip
hdr
Diffstat (limited to 'src/core/gnunet-service-core_sessions.h')
-rw-r--r--src/core/gnunet-service-core_sessions.h69
1 files changed, 69 insertions, 0 deletions
diff --git a/src/core/gnunet-service-core_sessions.h b/src/core/gnunet-service-core_sessions.h
new file mode 100644
index 000000000..2f8c01840
--- /dev/null
+++ b/src/core/gnunet-service-core_sessions.h
@@ -0,0 +1,69 @@
1/*
2 This file is part of GNUnet.
3 (C) 2009, 2010, 2011 Christian Grothoff (and other contributing authors)
4
5 GNUnet is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published
7 by the Free Software Foundation; either version 3, or (at your
8 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 General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with GNUnet; see the file COPYING. If not, write to the
17 Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA.
19*/
20
21/**
22 * @file core/gnunet-service-core_neighbours.h
23 * @brief code for managing of 'encrypted' sessions (key exchange done)
24 * @author Christian Grothoff
25 */
26#ifndef GNUNET_SERVICE_CORE_SESSIONS_H
27#define GNUNET_SERVICE_CORE_SESSIONS_H
28
29#include "gnunet_service_core_kx.h"
30#include "gnunet_service_core_sessions.h"
31
32
33/**
34 * End the session with the given peer (we are no longer
35 * connected).
36 *
37 * @param pid identity of peer to kill session with
38 */
39void
40GSC_SESSIONS_end (const struct GNUNET_PeerIdentity *pid);
41
42
43/**
44 * Traffic is being solicited for the given peer. This means that
45 * the message queue on the transport-level is now empty and it
46 * is now OK to transmit another (non-control) message.
47 *
48 * @param pid identity of peer ready to receive data
49 */
50void
51GSC_SESSIONS_solicit (const struct GNUNET_PeerIdentity *pid);
52
53
54/**
55 * Initialize sessions subsystem.
56 */
57void
58GSC_SESSIONS_init (void);
59
60
61/**
62 * Shutdown sessions subsystem.
63 */
64void
65GSC_SESSIONS_done (void);
66
67
68
69#endif