aboutsummaryrefslogtreecommitdiff
path: root/src/lockmanager/lockmanager.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lockmanager/lockmanager.h')
-rw-r--r--src/lockmanager/lockmanager.h71
1 files changed, 0 insertions, 71 deletions
diff --git a/src/lockmanager/lockmanager.h b/src/lockmanager/lockmanager.h
deleted file mode 100644
index 030c827c1..000000000
--- a/src/lockmanager/lockmanager.h
+++ /dev/null
@@ -1,71 +0,0 @@
1/*
2 This file is part of GNUnet.
3 (C) 2008--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 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 lockmanager/lockmanager.h
23 * @brief client-server protocol messages for LOCKMANAGER service
24 * @author Sree Harsha Totakura
25 */
26
27#ifndef LOCKMANAGER_H
28#define LOCKMANAGER_H
29
30#ifdef __cplusplus
31extern "C"
32{
33#if 0 /* keep Emacsens' auto-indent happy */
34}
35#endif
36#endif
37
38#include "gnunet_common.h"
39
40/**
41 * Structure of Lockmanager message
42 */
43struct GNUNET_LOCKMANAGER_Message
44{
45 /**
46 * The generic message header
47 */
48 struct GNUNET_MessageHeader header;
49
50 /**
51 * The lock
52 */
53 uint32_t lock;
54
55 /**
56 * The locking domain name(NULL terminated string of characters) should
57 * follow here. The size of the header should include the size of this string
58 * with its trailing NULL
59 */
60};
61
62#if 0 /* keep Emacsens' auto-indent happy */
63{
64#endif
65#ifdef __cplusplus
66}
67#endif
68
69/* ifndef LOCKMANAGER_H */
70#endif
71/* end of lockmanager.h */