generated from ipfs/ipfs-repository-template
-
Notifications
You must be signed in to change notification settings - Fork 113
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #747 from ipfs/http-retr2
httpnet: bitswap network for HTTP block retrieval over trustless gateway endpoints.
- Loading branch information
Showing
39 changed files
with
3,224 additions
and
144 deletions.
There are no files selected for viewing
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
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
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
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package bsnet | ||
|
||
import "github.com/ipfs/boxo/bitswap/network/bsnet/internal" | ||
|
||
var ( | ||
// ProtocolBitswapNoVers is equivalent to the legacy bitswap protocol | ||
ProtocolBitswapNoVers = internal.ProtocolBitswapNoVers | ||
// ProtocolBitswapOneZero is the prefix for the legacy bitswap protocol | ||
ProtocolBitswapOneZero = internal.ProtocolBitswapOneZero | ||
// ProtocolBitswapOneOne is the prefix for version 1.1.0 | ||
ProtocolBitswapOneOne = internal.ProtocolBitswapOneOne | ||
// ProtocolBitswap is the current version of the bitswap protocol: 1.2.0 | ||
ProtocolBitswap = internal.ProtocolBitswap | ||
) |
File renamed without changes.
Oops, something went wrong.