Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update doc (and comment) multipath-[01|02] => 04 #326

Merged
merged 1 commit into from
Jul 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ XQUIC Library released by Alibaba is …


[![](https://img.shields.io/static/v1?label=draft-13&message=QUIC-LB&color=9cf)](https://tools.ietf.org/html/draft-ietf-quic-load-balancers-13)
[![](https://img.shields.io/static/v1?label=draft-01&message=Multipath-QUIC&color=9cf)](https://tools.ietf.org/html/draft-ietf-quic-multipath-01)
[![](https://img.shields.io/static/v1?label=draft-04&message=Multipath-QUIC&color=9cf)](https://tools.ietf.org/html/draft-ietf-quic-multipath-04)

#### Standardized Features

Expand All @@ -40,7 +40,7 @@ XQUIC Library released by Alibaba is …

#### Not Yet Standardized Features

* [Multipath QUIC](https://tools.ietf.org/html/draft-ietf-quic-multipath-02)
* [Multipath QUIC](https://tools.ietf.org/html/draft-ietf-quic-multipath-04)

* [QUIC-LB](https://tools.ietf.org/html/draft-ietf-quic-load-balancers-13)

Expand Down
2 changes: 1 addition & 1 deletion include/xquic/xquic.h
Original file line number Diff line number Diff line change
Expand Up @@ -1165,7 +1165,7 @@ typedef struct xqc_conn_settings_s {

/*
* multipath option:
* https://datatracker.ietf.org/doc/html/draft-ietf-quic-multipath-02#section-3
* https://datatracker.ietf.org/doc/html/draft-ietf-quic-multipath-04#section-3
* 0: don't support multipath
* 1: supports multipath (unified solution) - multiple PN spaces
*/
Expand Down
4 changes: 2 additions & 2 deletions src/transport/xqc_transport_params.h
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ typedef struct {
/**
* enable_multipath is a self-defined experimental transport parameter by xquic, which will
* enable multipath quic if enable_multipath is set to be 1.
* https://datatracker.ietf.org/doc/html/draft-ietf-quic-multipath-02#section-3
* https://datatracker.ietf.org/doc/html/draft-ietf-quic-multipath-04#section-3
* enable_multipath is designed to be effective only on current connection and do not apply to
* future connections, storing this parameter and recover on future connections is prohibited.
* NOTICE: enable_multipath MIGHT be modified or removed as it is not an official parameter
Expand Down Expand Up @@ -178,4 +178,4 @@ ssize_t xqc_write_transport_params(char *tp_buf, size_t cap,
void xqc_init_transport_params(xqc_transport_params_t *params);


#endif /* XQC_TRANSPORT_PARAMS_H_ */
#endif /* XQC_TRANSPORT_PARAMS_H_ */