Permalink
Cannot retrieve contributors at this time
17 lines (13 sloc)
324 Bytes
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package namesys.pb; | |
| message IpnsEntry { | |
| enum ValidityType { | |
| // setting an EOL says "this record is valid until..." | |
| EOL = 0; | |
| } | |
| required bytes value = 1; | |
| required bytes signature = 2; | |
| optional ValidityType validityType = 3; | |
| optional bytes validity = 4; | |
| optional uint64 sequence = 5; | |
| optional uint64 ttl = 6; | |
| } |