All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.named_data.jndn.sync.sync-state-proto.proto Maven / Gradle / Ivy

Go to download

jNDN is a new implementation of a Named Data Networking client library written in Java. It is wire format compatible with the new NDN-TLV encoding, with NDNx and PARC's CCNx.

There is a newer version: 0.25
Show newest version
package net.named_data.jndn.sync;

message SyncState
{
  required string name = 1;
  enum ActionType
  {
    UPDATE = 0;
    DELETE = 1;
    OTHER = 2;
  }
  required ActionType type = 2;
  message SeqNo
  {
    required uint64 seq = 1;
    required uint64 session = 2;
  }
  optional SeqNo seqno = 3;
  optional bytes application_info = 4;
}

message SyncStateMsg
{
  repeated SyncState ss = 1;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy