mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-23 03:17:43 +08:00
11 lines
138 B
Protocol Buffer
11 lines
138 B
Protocol Buffer
package bloom;
|
|
|
|
message PackedFilter {
|
|
enum HashType {
|
|
|
|
}
|
|
optional bool compressed;
|
|
optional bytes data;
|
|
repeated HashType hashes;
|
|
}
|