X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=src%2Fdatastore%2Fdatastore.h;h=dc3d9d1f26a0c7d927f11f8c8704facc88a04cf2;hb=2105059516320800eaa8fff1196b58f29a50ba7c;hp=52ac0c3a009c03ddb4a47ccc24b90026038f9efc;hpb=c2d9d1e64c9801122caaa6b429fc67706db5c9d7;p=oweals%2Fgnunet.git diff --git a/src/datastore/datastore.h b/src/datastore/datastore.h index 52ac0c3a0..dc3d9d1f2 100644 --- a/src/datastore/datastore.h +++ b/src/datastore/datastore.h @@ -1,6 +1,6 @@ /* This file is part of GNUnet - Copyright (C) 2004, 2005, 2006, 2007, 2009 Christian Grothoff (and other contributing authors) + Copyright (C) 2004, 2005, 2006, 2007, 2009 GNUnet e.V. GNUnet is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published @@ -14,8 +14,8 @@ 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. + Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + Boston, MA 02110-1301, USA. */ /** @@ -106,12 +106,10 @@ struct ReleaseReserveMessage * Message to the datastore service asking about specific * content. */ -struct GetMessage +struct GetKeyMessage { /** - * Type is GNUNET_MESSAGE_TYPE_DATASTORE_GET. Size - * can either be "sizeof(struct GetMessage)" or - * "sizeof(struct GetMessage) - sizeof(struct GNUNET_HashCode)"! + * Type is #GNUNET_MESSAGE_TYPE_DATASTORE_GET_KEY. */ struct GNUNET_MessageHeader header; @@ -126,14 +124,37 @@ struct GetMessage uint64_t offset GNUNET_PACKED; /** - * Desired key (optional). Check the "size" of the - * header to see if the key is actually present. + * Desired key. */ struct GNUNET_HashCode key; }; +/** + * Message to the datastore service asking about specific + * content. + */ +struct GetMessage +{ + /** + * Type is #GNUNET_MESSAGE_TYPE_DATASTORE_GET. + */ + struct GNUNET_MessageHeader header; + + /** + * Desired content type. (actually an enum GNUNET_BLOCK_Type) + */ + uint32_t type GNUNET_PACKED; + + /** + * Offset of the result. + */ + uint64_t offset GNUNET_PACKED; + +}; + + /** * Message to the datastore service asking about zero * anonymity content.