aboutsummaryrefslogtreecommitdiff
path: root/src/identity/identity.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2013-07-14 18:20:55 +0000
committerChristian Grothoff <christian@grothoff.org>2013-07-14 18:20:55 +0000
commite43155e9ea536991a489e0fe04890e0269869af1 (patch)
treeb6488239217f7c00d7dc109641292b4ba5092ded /src/identity/identity.h
parent206b8c58b7e6843ddb4832692b11032d4fe57541 (diff)
downloadgnunet-e43155e9ea536991a489e0fe04890e0269869af1.tar.gz
gnunet-e43155e9ea536991a489e0fe04890e0269869af1.zip
-skeleton for identity service
Diffstat (limited to 'src/identity/identity.h')
-rw-r--r--src/identity/identity.h57
1 files changed, 57 insertions, 0 deletions
diff --git a/src/identity/identity.h b/src/identity/identity.h
new file mode 100644
index 000000000..04cfc110f
--- /dev/null
+++ b/src/identity/identity.h
@@ -0,0 +1,57 @@
1/*
2 This file is part of GNUnet.
3 (C) 2013 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 Liceidentity 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 Liceidentity for more details.
14
15 You should have received a copy of the GNU General Public Liceidentity
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 * @author Christian Grothoff
23 * @file identity/identity.h
24 *
25 * @brief Common type definitions for the identity
26 * service and API.
27 */
28#ifndef IDENTITY_H
29#define IDENTITY_H
30
31#include "gnunet_common.h"
32
33/**
34 * Generate debug-level log messages?
35 */
36#define DEBUG_IDENTITY GNUNET_EXTRA_LOGGING
37
38GNUNET_NETWORK_STRUCT_BEGIN
39
40/**
41 * Network size estimate sent from the service
42 * to clients. Contains the current size estimate
43 * (or 0 if none has been calculated) and the
44 * standard deviation of known estimates.
45 *
46 */
47struct GNUNET_IDENTITY_XXXMessage
48{
49 /**
50 * Type: GNUNET_MESSAGE_TYPE_IDENTITY_XXX
51 */
52 struct GNUNET_MessageHeader header;
53
54};
55GNUNET_NETWORK_STRUCT_END
56
57#endif