X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=src%2Finclude%2Fgnunet_peerstore_service.h;h=55f371399f2a44860ac6dd7bd4d008a2bde12f78;hb=f1e8076ed474a429aff32839ed5f8fc20371839c;hp=e9e344d8835edffa47e58200ba7892a99dfe0a53;hpb=4ce6efe274c05b7386acb9f4c4d7980a4fc9aee2;p=oweals%2Fgnunet.git diff --git a/src/include/gnunet_peerstore_service.h b/src/include/gnunet_peerstore_service.h index e9e344d88..55f371399 100644 --- a/src/include/gnunet_peerstore_service.h +++ b/src/include/gnunet_peerstore_service.h @@ -2,20 +2,20 @@ This file is part of GNUnet Copyright (C) - 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 free software: you can redistribute it and/or modify it + under the terms of the GNU Affero General Public License as published + by the Free Software Foundation, either version 3 of the License, + 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. + Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . - 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., 51 Franklin Street, Fifth Floor, - Boston, MA 02110-1301, USA. + SPDX-License-Identifier: AGPL3.0-or-later */ /** @@ -34,7 +34,6 @@ #define GNUNET_PEERSTORE_SERVICE_H #include "gnunet_util_lib.h" -#include "gnunet_common.h" #ifdef __cplusplus extern "C" @@ -87,7 +86,7 @@ struct GNUNET_PEERSTORE_Record /** * Peer Identity */ - struct GNUNET_PeerIdentity *peer; + struct GNUNET_PeerIdentity peer; /** * Record key string @@ -107,12 +106,13 @@ struct GNUNET_PEERSTORE_Record /** * Expiry time of entry */ - struct GNUNET_TIME_Absolute *expiry; + struct GNUNET_TIME_Absolute expiry; /** - * Client from which this record originated + * Client from which this record originated. + * NOTE: This is internal to the service. */ - struct GNUNET_SERVER_Client *client; + struct GNUNET_SERVICE_Client *client; }; @@ -133,13 +133,13 @@ typedef void * @param cls closure * @param record peerstore record information * @param emsg error message, or NULL if no errors - * @return #GNUNET_YES to continue iterating, #GNUNET_NO to stop */ -typedef int +typedef void (*GNUNET_PEERSTORE_Processor) (void *cls, const struct GNUNET_PEERSTORE_Record *record, const char *emsg); + /** * Connect to the PEERSTORE service. * @@ -207,7 +207,6 @@ GNUNET_PEERSTORE_store_cancel (struct GNUNET_PEERSTORE_StoreContext *sc); * @param sub_system name of sub system * @param peer Peer identity (can be NULL) * @param key entry key string (can be NULL) - * @param timeout time after which the iterate request is canceled * @param callback function called with each matching record, all NULL's on end * @param callback_cls closure for @a callback */ @@ -216,7 +215,6 @@ GNUNET_PEERSTORE_iterate (struct GNUNET_PEERSTORE_Handle *h, const char *sub_system, const struct GNUNET_PeerIdentity *peer, const char *key, - struct GNUNET_TIME_Relative timeout, GNUNET_PEERSTORE_Processor callback, void *callback_cls);