fixing broken links for window size and max concurrent streams
This commit is contained in:
@@ -208,7 +208,7 @@ impl Endpoint {
|
||||
///
|
||||
/// Default is 65,535
|
||||
///
|
||||
/// [spec]: https://http2.github.io/http2-spec/#SETTINGS_INITIAL_WINDOW_SIZE
|
||||
/// [spec]: https://httpwg.org/specs/rfc9113.html#InitialWindowSize
|
||||
pub fn initial_stream_window_size(self, sz: impl Into<Option<u32>>) -> Self {
|
||||
Endpoint {
|
||||
init_stream_window_size: sz.into(),
|
||||
|
||||
@@ -194,7 +194,7 @@ impl<L> Server<L> {
|
||||
///
|
||||
/// Default is 65,535
|
||||
///
|
||||
/// [spec]: https://http2.github.io/http2-spec/#SETTINGS_INITIAL_WINDOW_SIZE
|
||||
/// [spec]: https://httpwg.org/specs/rfc9113.html#InitialWindowSize
|
||||
#[must_use]
|
||||
pub fn initial_stream_window_size(self, sz: impl Into<Option<u32>>) -> Self {
|
||||
Server {
|
||||
@@ -219,7 +219,7 @@ impl<L> Server<L> {
|
||||
///
|
||||
/// Default is no limit (`None`).
|
||||
///
|
||||
/// [spec]: https://http2.github.io/http2-spec/#SETTINGS_MAX_CONCURRENT_STREAMS
|
||||
/// [spec]: https://httpwg.org/specs/rfc9113.html#n-stream-concurrency
|
||||
#[must_use]
|
||||
pub fn max_concurrent_streams(self, max: impl Into<Option<u32>>) -> Self {
|
||||
Server {
|
||||
|
||||
Reference in New Issue
Block a user