aboutsummaryrefslogtreecommitdiff
path: root/src/core/gnunet-service-core.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2011-10-06 13:19:16 +0000
committerChristian Grothoff <christian@grothoff.org>2011-10-06 13:19:16 +0000
commit4a5fc4b938bc98a2edc71d4875779619d0cebeec (patch)
treea816afcf4e6d7c25e0ea8217dc89d810b8fa1eac /src/core/gnunet-service-core.h
parent2fb1bb841a5a7ce3783d84cea68938a8202928aa (diff)
downloadgnunet-4a5fc4b938bc98a2edc71d4875779619d0cebeec.tar.gz
gnunet-4a5fc4b938bc98a2edc71d4875779619d0cebeec.zip
stuff
Diffstat (limited to 'src/core/gnunet-service-core.h')
-rw-r--r--src/core/gnunet-service-core.h96
1 files changed, 96 insertions, 0 deletions
diff --git a/src/core/gnunet-service-core.h b/src/core/gnunet-service-core.h
index d98b318e5..2b0a0c557 100644
--- a/src/core/gnunet-service-core.h
+++ b/src/core/gnunet-service-core.h
@@ -1,3 +1,91 @@
1/*
2 This file is part of GNUnet.
3 (C) 2009, 2010 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.h
23 * @brief Globals for gnunet-service-core
24 * @author Christian Grothoff
25 */
26#ifndef GNUNET_SERVICE_CORE_H
27#define GNUNET_SERVICE_CORE_H
28
29
30
31/**
32 * Opaque handle to a client.
33 */
34struct GSC_Client;
35
36
37/**
38 * Record kept for each request for transmission issued by a
39 * client that is still pending. (This struct is used by
40 * both the 'CLIENTS' and 'SESSIONS' subsystems.)
41 */
42struct GSC_ClientActiveRequest
43{
44
45 /**
46 * Active requests are kept in a doubly-linked list of
47 * the respective target peer.
48 */
49 struct ClientActiveRequest *next;
50
51 /**
52 * Active requests are kept in a doubly-linked list of
53 * the respective target peer.
54 */
55 struct ClientActiveRequest *prev;
56
57 /**
58 * Which peer is the message going to be for?
59 */
60 struct GNUNET_PeerIdentity target;
61
62 /**
63 * Handle to the client.
64 */
65 struct GSC_Client *client_handle;
66
67 /**
68 * By what time would the client want to see this message out?
69 */
70 struct GNUNET_TIME_Absolute deadline;
71
72 /**
73 * How important is this request.
74 */
75 uint32_t priority;
76
77 /**
78 * How many bytes does the client intend to send?
79 */
80 uint16_t msize;
81
82 /**
83 * Unique request ID (in big endian).
84 */
85 uint16_t smr_id;
86
87};
88
1 89
2/** 90/**
3 * Our configuration. 91 * Our configuration.
@@ -13,3 +101,11 @@ extern struct GNUNET_STATISTICS_Handle *GSC_stats;
13 * Our identity. 101 * Our identity.
14 */ 102 */
15extern struct GNUNET_PeerIdentity GSC_my_identity; 103extern struct GNUNET_PeerIdentity GSC_my_identity;
104
105/**
106 * Our message stream tokenizer (for encrypted payload).
107 */
108extern struct GNUNET_SERVER_MessageStreamTokenizer *GSC_mst;
109
110
111#endif