Message DHTputCAPIResponse

File: Common/CommonMessages.msg

Message type to respond to a DHTput request

See also: DHTput

Author: Ingmar Baumgart

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:

BaseResponseMessage

A basic Remote-Procedure-Response message

Fields:

Name Type Description
key OverlayKey
value BinaryValue

the value for which this node is root now

isSuccess bool

Source code:

message DHTputCAPIResponse extends BaseResponseMessage
{
    fields:
        OverlayKey key;
        BinaryValue value; // the value for which this node is root now
        bool isSuccess;
};