2f8c018401be0f2206f9be369abc1dccf79111cf
[oweals/gnunet.git] / src / core / gnunet-service-core_sessions.h
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  */
39 void
40 GSC_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  */
50 void
51 GSC_SESSIONS_solicit (const struct GNUNET_PeerIdentity *pid);
52
53
54 /**
55  * Initialize sessions subsystem.
56  */
57 void
58 GSC_SESSIONS_init (void);
59
60
61 /**
62  * Shutdown sessions subsystem.
63  */
64 void
65 GSC_SESSIONS_done (void);
66
67
68
69 #endif