From 75571213d264a51d6b7136cb4748db66f587d008 Mon Sep 17 00:00:00 2001 From: Matthias Wachs Date: Tue, 21 Feb 2012 17:13:05 +0000 Subject: [PATCH] - missing file --- src/namestore/namestore.h | 46 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 src/namestore/namestore.h diff --git a/src/namestore/namestore.h b/src/namestore/namestore.h new file mode 100644 index 000000000..4266a32c7 --- /dev/null +++ b/src/namestore/namestore.h @@ -0,0 +1,46 @@ +/* + This file is part of GNUnet. + (C) 2009 Christian Grothoff (and other contributing authors) + + GNUnet is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published + by the Free Software Foundation; either version 3, or (at your + option) any later version. + + GNUnet is distributed in the hope that it will be useful, but + WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + General Public License for more details. + + You should have received a copy of the GNU General Public License + along with GNUnet; see the file COPYING. If not, write to the + Free Software Foundation, Inc., 59 Temple Place - Suite 330, + Boston, MA 02111-1307, USA. +*/ + +/** + * @file namestore/namestore.h + * @brief common internal definitions for namestore service + * @author Matthias Wachs + */ +#ifndef NAMESTORE_H +#define NAMESTORE_H + +GNUNET_NETWORK_STRUCT_BEGIN +/** + * Change in blacklisting (either request or notification, + * depending on which direction it is going). + */ +struct StartMessage +{ + + /** + * Type will be GNUNET_MESSAGE_TYPE_NAMESTORE_START + */ + struct GNUNET_MessageHeader header; + +}; +GNUNET_NETWORK_STRUCT_END + +/* end of namestore.h */ +#endif -- 2.25.1