Skip to content

Commit

Permalink
ipip-0412: clarify car order=unk
Browse files Browse the repository at this point in the history
  • Loading branch information
lidel committed May 17, 2023
1 parent e216ea9 commit 50223b2
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions src/ipips/ipip-0412.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,11 +85,15 @@ as noted in :cite[rfc9110]).

#### `order` CAR content type parameter

The `order` parameter accepts the following values:
The `order` parameter allows clients to specify the desired block order in the
response. It supports the following values:

- `dfs`: [Depth-First Search](https://en.wikipedia.org/wiki/Depth-first_search)
order, allows for streaming responses with minimal memory usage
- `rnd`: Unknown (random) order, the implicit default when `order` parameter is missing.
order, enables streaming responses with minimal memory usage.
- `unk`: Unknown order, which serves as the implicit default when the order
parameter is missing. In this case, the client cannot make any assumptions
about the block order: blocks may arrive in a random order or be a result of
a custom DAG traversal algorithm.

#### `dups` CAR content type parameter

Expand Down

0 comments on commit 50223b2

Please sign in to comment.