# コネクションは複数のストリームを扱う

SCTP、SSH、HTTP/2 と似たように、QUIC は単一の物理的なコネクションで別々の論理的なストリームを扱えるという特徴があります。

複数の並列ストリームは、それぞれ単一のコネクションで接続しているかのように他のストリームに影響を与えずにデータを転送できます。

QUIC コネクションは、TCP コネクションと似たような仕組みで、2つのエンドポイント間でのネゴシエーションを経て確立します。

QUIC コネクションは UDP ポートと IP アドレスで構成されますが、一旦コネクションが確立すると、それは自身が持つ「コネクション ID」により関連付けられます。

確立済みのコネクションを使って、どちら側もストリームを作成して相手にデータを送信できます。

ストリームのデータは到着順序が保証され、また信頼性があります。

しかし、異なるストリーム間では到着順序は保証されません。

QUIC はコネクションとストリームの両方においてフロー制御を提供します。

詳細は [コネクション](/ja/quic/quic-connections.md) 節と [ストリーム](/ja/quic/quic-streams.md) 節で確認できます。


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://http3-explained.haxx.se/ja/the-protocol/feature-streams.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
