Packet DHTPutCall

File: src/applications/dht/DHTMessage.msg

(no description)

Usage diagram:

The following diagram shows usage relationships between types. Unresolved types are missing from the diagram.

Inheritance diagram:

The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram.

Extends:

BaseCallMessage (packet)

A basic Remote-Procedure-Call message

Fields:

Name Type Description
authBlock AuthBlock[]

optional authentication block containing a signature

isModifiable bool
maintenance bool
ttl int
type int

message type

kind uint32_t
id uint32_t
srcNode NodeHandle

source node

ownerNode NodeHandle
statType int

message type for stats

nonce unsigned int

nonce to match RPC responses to corresponding calls

value BinaryValue
key OverlayKey

Source code:

packet DHTPutCall extends BaseCallMessage
{
    OverlayKey key;
    BinaryValue value;
    uint32_t kind;
    uint32_t id;
    int ttl;
    bool isModifiable;
    bool maintenance;
    NodeHandle ownerNode;
}