Skip to content

Commit

Permalink
Update doc (and comment) multipath-[01|02] => 04 (#326)
Browse files Browse the repository at this point in the history
  • Loading branch information
alagoutte authored Jul 22, 2023
1 parent 6638ec1 commit 8889d86
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
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_ */

0 comments on commit 8889d86

Please sign in to comment.