Data type for DHT CAPI messages
Author: Ingmar Baumgart
The following diagram shows usage relationships between types. Unresolved types are missing from the diagram. Click here to see the full picture.
The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram. Click here to see the full picture.
Name | Type | Description |
---|---|---|
key | OverlayKey | |
kind | uint32_t | |
id | uint32_t | |
value | BinaryValue | |
ttl | int | |
ownerNode | NodeHandle | |
is_modifiable | bool | |
responsible | bool |
// // Data type for DHT CAPI messages // // @author Ingmar Baumgart // class DhtDumpEntry { OverlayKey key; uint32_t kind; uint32_t id; BinaryValue value; int ttl; NodeHandle ownerNode; bool is_modifiable; bool responsible; }