Message DHTgetCAPIResponse

File: Common/CommonMessages.msg

Message type to respond to a DHTget request

See also: DHTget

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 requested value

isSuccess bool

Source code:

message DHTgetCAPIResponse extends BaseResponseMessage
{
    fields:
        OverlayKey key;
        BinaryValue value; // the requested value
        bool isSuccess;
};