aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChia-liang Kao <clkao@clkao.org>2016-06-19 17:17:19 +0800
committerChia-liang Kao <clkao@clkao.org>2016-06-19 17:17:32 +0800
commitf1f0a8e943c07872d3b7eb3281718beec19fd62d (patch)
treead6317503eb2b50678719e67d50a34873702813d
parent90cbe37170638afe99f7edb9eea6ebdf8193af5b (diff)
downloaddat-docs-f1f0a8e943c07872d3b7eb3281718beec19fd62d.tar.gz
dat-docs-f1f0a8e943c07872d3b7eb3281718beec19fd62d.zip
protobuf is the correct highlight.js language name
-rw-r--r--hyperdrive.md16
-rw-r--r--meta.dat.md2
2 files changed, 8 insertions, 10 deletions
diff --git a/hyperdrive.md b/hyperdrive.md
index daba5d6..64298cd 100644
--- a/hyperdrive.md
+++ b/hyperdrive.md
@@ -282,7 +282,7 @@ These are the types of messages the peers send to each other
This should be the first message sent and is also the only message without a type. It looks like this
-``` proto
+``` protobuf
message Open {
required bytes feed = 1;
required bytes nonce = 2;
@@ -297,7 +297,7 @@ When you are done using a channel send an empty message to indicate end-of-chann
The message contains the protocol handshake. It has type `0`.
-``` proto
+``` protobuf
message Handshake {
required bytes id = 1;
repeated string extensions = 2;
@@ -310,7 +310,7 @@ You should send this message after sending an open message. By sending it after
You can send a have message to give the other peer information about which blocks of data you have. It has type `1`.
-``` proto
+``` protobuf
message Have {
required uint64 start = 1;
optional uint64 end = 2;
@@ -324,7 +324,7 @@ If using a bitfield it should be encoded using a run length encoding described a
You can send a have message to give the other peer information about which blocks of data you want to have. It has type `2`.
-``` proto
+``` protobuf
message Want {
required uint64 start = 1;
optional uint64 end = 2;
@@ -339,7 +339,7 @@ Send this message to request a block of data. You can request a block by block i
in the hash of a block you can set the hash property to true. The nodes property can be set to a tree digest of the tree nodes you already
have for this block or byte range. A request message has type `3`.
-``` proto
+``` protobuf
message Request {
optional uint64 block = 1;
optional uint64 bytes = 2;
@@ -352,7 +352,7 @@ message Request {
Send a block of data to the other peer. You can use this message to reply to a request or optimistically send other blocks of data to the other client. It has type `4`.
-``` proto
+``` protobuf
message Data {
message Node {
required uint64 index = 1;
@@ -371,7 +371,7 @@ message Data {
Cancel a previous sent request. It has type `5`.
-``` proto
+``` protobuf
message Cancel {
optional uint64 block = 1;
optional uint64 bytes = 2;
@@ -385,5 +385,3 @@ An empty message that tells the other peer that they should stop requesting new
#### `7` Resume
An empty message that tells the other peer that they can continue requesting new blocks of data. It has type `7`.
-
-
diff --git a/meta.dat.md b/meta.dat.md
index 6d51634..989879f 100644
--- a/meta.dat.md
+++ b/meta.dat.md
@@ -18,7 +18,7 @@ The format is a header followed by an index of many entries. Entry order is base
The header protobuf has this schema:
-``` proto
+``` protobuf
message Header {
required bytes datLink = 1;
required uint64 entries = 2;