Watch entry. More...
Data Fields | |
struct WatchEntry * | next |
Watch entries are kept in a linked list. More... | |
struct WatchEntry * | prev |
Watch entries are kept in a linked list. More... | |
struct ClientEntry * | ce |
For which client is this watch entry? More... | |
uint64_t | last_value |
Last value we communicated to the client for this watch entry. More... | |
uint32_t | wid |
Unique watch number for this client and this watched value. More... | |
int | last_value_set |
Is last_value valid GNUNET_NO : last_value is n/a, GNUNET_YES: last_value is valid. More... | |
Watch entry.
Definition at line 35 of file gnunet-service-statistics.c.
struct WatchEntry* WatchEntry::next |
Watch entries are kept in a linked list.
Definition at line 40 of file gnunet-service-statistics.c.
Referenced by client_disconnect_cb(), and notify_change().
struct WatchEntry* WatchEntry::prev |
Watch entries are kept in a linked list.
Definition at line 45 of file gnunet-service-statistics.c.
struct ClientEntry* WatchEntry::ce |
For which client is this watch entry?
Definition at line 50 of file gnunet-service-statistics.c.
Referenced by client_disconnect_cb(), handle_watch(), and notify_change().
uint64_t WatchEntry::last_value |
Last value we communicated to the client for this watch entry.
Definition at line 55 of file gnunet-service-statistics.c.
Referenced by notify_change().
uint32_t WatchEntry::wid |
Unique watch number for this client and this watched value.
Definition at line 60 of file gnunet-service-statistics.c.
Referenced by handle_watch(), and notify_change().
int WatchEntry::last_value_set |
Is last_value valid GNUNET_NO : last_value is n/a, GNUNET_YES: last_value is valid.
Definition at line 66 of file gnunet-service-statistics.c.
Referenced by handle_watch(), and notify_change().