Skip to content
This repository was archived by the owner on Oct 23, 2024. It is now read-only.

Commit 9513e17

Browse files
committed
Update doc for WebTransport.
QuicTransport and Http3Transport are merged to a single WebTransport interface.
1 parent 7a8fcef commit 9513e17

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

doc/Client-Portal Protocol.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -620,4 +620,4 @@ Step 2: Receive a response from server.
620620
}
621621
```
622622

623-
Step 3: Create a new QuicTransport or get an existing QuicTransport, then create a new BidirectionalStream or SendStream. Write data to stream. The URL of QuicTransport should be included in token. QuicTransport is shared by all media streams, data streams and signaling which belong to the same client.
623+
Step 3: Create a new WebTransport or get an existing WebTransport, then create a new BidirectionalStream or SendStream. Write data to stream. The URL of WebTransport should be included in token. WebTransport is shared by all media streams, data streams and signaling which belong to the same client.

doc/proposals/quic-transport-payload-format.md renamed to doc/design/quic-transport-payload-format.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# QUIC Transport Payload and Message Format
22

3-
This post defines the payload and message format for data transmitted over [QuicTransport](https://wicg.github.io/web-transport/#quic-transport).
3+
This post defines the payload and message format for data transmitted over [WebTransport](https://w3c.github.io/webtransport/#web-transport).
44

55
## Streams
66

@@ -28,10 +28,10 @@ It may increase about 2% network cost.
2828

2929
## Authentication
3030

31-
After creating a QuicTransport, a stream with session 0 should be created for authentication. If signaling is transmitted over QuicTransport, authentication follows the regular process defined by [Client-Portal Protocol](https://github.com/open-webrtc-toolkit/owt-server/blob/master/doc/Client-Portal%20Protocol.md). Otherwise, client sends a following message with UTF-8 encoding in JSON format to server.
31+
After creating a WebTransport, a stream with session 0 should be created for authentication. If signaling is transmitted over WebTransport, authentication follows the regular process defined by [Client-Portal Protocol](https://github.com/open-webrtc-toolkit/owt-server/blob/master/doc/Client-Portal%20Protocol.md). Otherwise, client sends a following message with UTF-8 encoding in JSON format to server.
3232

3333
```webidl
34-
interface QuicTransportLoginInfo {
34+
interface WebTransportLoginInfo {
3535
attribute DOMString? token; // Base64 encoded token.
3636
};
3737
```

0 commit comments

Comments
 (0)