-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
18 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,23 @@ | ||
--- | ||
title: "Multistream Select" | ||
description: "" | ||
description: "Multistream Select is used to negotiate the protocol to be spoken on a connection or stream." | ||
weight: 26 | ||
--- | ||
|
||
Coming soon! | ||
## Overview | ||
|
||
[Multistream Select](https://github.com/multiformats/multistream-select) is a | ||
protocol negotiation protocol. It allows two peers to negotiate the next spoken | ||
protocol on a connection or stream. | ||
|
||
Peers use Multistream Select at various places to select the protocols to use on | ||
a libp2p connection or stream. Most prominently Multistream Select is used to | ||
select the [security](../../secure-comm/overview.md) followed by [stream | ||
multiplexing](../../multiplex/overview.md) protocol spoken on a connection. In | ||
addition it is used to select the application protocol (e.g. Kademlia) on each | ||
new stream on a given connection. The [protocol | ||
negotiation](../core-abstractions/connections#protocol-negotiation) and [upgrade | ||
process](../core-abstractions/connections#upgrading-connections) are explained | ||
further in the [connections document](../core-abstractions/connections.md). | ||
|
||
{{< alert icon="💡" context="note" text="See the multistream-select <a class=\"text-muted\" href=\"https://github.com/multiformats/multistream-select\">technical specification</a> for more details." />}} |