Message DHTputCAPICall

File: Common/CommonMessages.msg

Author: Ingmar Baumgart

Message type to store value at the keys root

Inheritance diagram:

The following diagram shows part of the inheritance hierarchy. Unresolved types are missing from the diagram. Click here to see the full picture.

Extends:

BaseCallMessage

A basic Remote-Procedure-Call message

Fields:

Name Type Description
key OverlayKey

overlayKey that corresponds with value

value BinaryValue

value that has to be stored on keys root

ttl int

time to life

isModifiable bool

Source code:

message DHTputCAPICall extends BaseCallMessage
{
    fields:
        OverlayKey key; // overlayKey that corresponds with value
        BinaryValue value; // value that has to be stored on keys root
        int ttl; // time to life
        bool isModifiable;
};