API to the peerstore service. More...
#include "gnunet_util_lib.h"
Go to the source code of this file.
Data Structures | |
struct | GNUNET_PEERSTORE_Record |
Single PEERSTORE record. More... | |
Macros | |
#define | GNUNET_PEERSTORE_TRANSPORT_URLADDRESS_KEY "transport-communicator-url" |
Key used for storing addresses in URL format in the peerstore. More... | |
#define | GNUNET_PEERSTORE_TRANSPORT_HELLO_KEY "transport-peer-hello" |
Key used for storing HELLOs in the peerstore. More... | |
#define | GNUNET_PEERSTORE_TRANSPORT_BACKCHANNEL_MONOTIME "transport-backchannel-monotonic-time" |
Key used to store sender's monotonic time from backchannel messages. More... | |
#define | GNUNET_PEERSTORE_TRANSPORT_DVLEARN_MONOTIME "transport-dv-learn-monotonic-time" |
Key used to store sender's monotonic time from DV learn messages. More... | |
#define | GNUNET_PEERSTORE_TRANSPORT_TCP_COMMUNICATOR_HANDSHAKE "transport-tcp-communicator-handshake" |
Key used to store sender's monotonic time from handshake message. More... | |
#define | GNUNET_PEERSTORE_TRANSPORT_TCP_COMMUNICATOR_HANDSHAKE_ACK "transport-tcp-communicator-handshake-ack" |
Key used to store sender's monotonic time from handshake ack message. More... | |
#define | GNUNET_PEERSTORE_TRANSPORT_TCP_COMMUNICATOR_REKEY "transport-tcp-communicator-rekey" |
Key used to store sender's monotonic time from rekey message. More... | |
Typedefs | |
typedef void(* | GNUNET_PEERSTORE_Continuation) (void *cls, int success) |
Continuation called with a status result. More... | |
typedef void(* | GNUNET_PEERSTORE_Processor) (void *cls, const struct GNUNET_PEERSTORE_Record *record, const char *emsg) |
Function called by PEERSTORE for each matching record. More... | |
Enumerations | |
enum | GNUNET_PEERSTORE_StoreOption { GNUNET_PEERSTORE_STOREOPTION_MULTIPLE = 0 , GNUNET_PEERSTORE_STOREOPTION_REPLACE = 1 } |
Options for storing values in PEERSTORE. More... | |
Functions | |
struct GNUNET_PEERSTORE_Handle * | GNUNET_PEERSTORE_connect (const struct GNUNET_CONFIGURATION_Handle *cfg) |
Connect to the PEERSTORE service. More... | |
void | GNUNET_PEERSTORE_disconnect (struct GNUNET_PEERSTORE_Handle *h, int sync_first) |
Disconnect from the PEERSTORE service. More... | |
struct GNUNET_PEERSTORE_StoreContext * | GNUNET_PEERSTORE_store (struct GNUNET_PEERSTORE_Handle *h, const char *sub_system, const struct GNUNET_PeerIdentity *peer, const char *key, const void *value, size_t size, struct GNUNET_TIME_Absolute expiry, enum GNUNET_PEERSTORE_StoreOption options, GNUNET_PEERSTORE_Continuation cont, void *cont_cls) |
Store a new entry in the PEERSTORE. More... | |
void | GNUNET_PEERSTORE_store_cancel (struct GNUNET_PEERSTORE_StoreContext *sc) |
Cancel a store request. More... | |
struct GNUNET_PEERSTORE_IterateContext * | GNUNET_PEERSTORE_iterate (struct GNUNET_PEERSTORE_Handle *h, const char *sub_system, const struct GNUNET_PeerIdentity *peer, const char *key, GNUNET_PEERSTORE_Processor callback, void *callback_cls) |
Iterate over records matching supplied key information. More... | |
void | GNUNET_PEERSTORE_iterate_cancel (struct GNUNET_PEERSTORE_IterateContext *ic) |
Cancel an iterate request Please do not call after the iterate request is done. More... | |
struct GNUNET_PEERSTORE_WatchContext * | GNUNET_PEERSTORE_watch (struct GNUNET_PEERSTORE_Handle *h, const char *sub_system, const struct GNUNET_PeerIdentity *peer, const char *key, GNUNET_PEERSTORE_Processor callback, void *callback_cls) |
Request watching a given key User will be notified with any new values added to key. More... | |
void | GNUNET_PEERSTORE_watch_cancel (struct GNUNET_PEERSTORE_WatchContext *wc) |
Cancel a watch request. More... | |
API to the peerstore service.
Definition in file gnunet_peerstore_service.h.