File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -277,7 +277,7 @@ where
277
277
///
278
278
/// If not set, hyper will use a default.
279
279
///
280
- /// [spec]: https://http2.github.io/http2-spec/ #SETTINGS_INITIAL_WINDOW_SIZE
280
+ /// [spec]: https://httpwg.org/specs/rfc9113.html #SETTINGS_INITIAL_WINDOW_SIZE
281
281
pub fn initial_stream_window_size ( & mut self , sz : impl Into < Option < u32 > > ) -> & mut Self {
282
282
if let Some ( sz) = sz. into ( ) {
283
283
self . h2_builder . adaptive_window = false ;
Original file line number Diff line number Diff line change @@ -118,7 +118,7 @@ impl<E> Builder<E> {
118
118
///
119
119
/// If not set, hyper will use a default.
120
120
///
121
- /// [spec]: https://http2.github.io/http2-spec/ #SETTINGS_INITIAL_WINDOW_SIZE
121
+ /// [spec]: https://httpwg.org/specs/rfc9113.html #SETTINGS_INITIAL_WINDOW_SIZE
122
122
pub fn initial_stream_window_size ( & mut self , sz : impl Into < Option < u32 > > ) -> & mut Self {
123
123
if let Some ( sz) = sz. into ( ) {
124
124
self . h2_builder . adaptive_window = false ;
@@ -173,7 +173,7 @@ impl<E> Builder<E> {
173
173
///
174
174
/// Default is no limit (`std::u32::MAX`). Passing `None` will do nothing.
175
175
///
176
- /// [spec]: https://http2.github.io/http2-spec/ #SETTINGS_MAX_CONCURRENT_STREAMS
176
+ /// [spec]: https://httpwg.org/specs/rfc9113.html #SETTINGS_MAX_CONCURRENT_STREAMS
177
177
pub fn max_concurrent_streams ( & mut self , max : impl Into < Option < u32 > > ) -> & mut Self {
178
178
self . h2_builder . max_concurrent_streams = max. into ( ) ;
179
179
self
You can’t perform that action at this time.
0 commit comments