File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ pub struct Config {
36
36
/// Must be set lower than the idle_timeout of both
37
37
/// peers to be effective.
38
38
///
39
- /// See [`quinn_proto ::TransportConfig::keep_alive_interval`] for more
39
+ /// See [`quinn ::TransportConfig::keep_alive_interval`] for more
40
40
/// info.
41
41
pub keep_alive_interval : Duration ,
42
42
/// Maximum number of incoming bidirectional streams that may be open
@@ -60,9 +60,9 @@ pub struct Config {
60
60
/// As client the version is chosen based on the remote's address.
61
61
pub support_draft_29 : bool ,
62
62
63
- /// TLS client config for the inner [`quinn_proto ::ClientConfig`].
63
+ /// TLS client config for the inner [`quinn ::ClientConfig`].
64
64
client_tls_config : Arc < rustls:: ClientConfig > ,
65
- /// TLS server config for the inner [`quinn_proto ::ServerConfig`].
65
+ /// TLS server config for the inner [`quinn ::ServerConfig`].
66
66
server_tls_config : Arc < rustls:: ServerConfig > ,
67
67
}
68
68
@@ -87,7 +87,7 @@ impl Config {
87
87
}
88
88
}
89
89
90
- /// Represents the inner configuration for [`quinn_proto `].
90
+ /// Represents the inner configuration for [`quinn `].
91
91
#[ derive( Debug , Clone ) ]
92
92
pub struct QuinnConfig {
93
93
pub ( crate ) client_config : quinn:: ClientConfig ,
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ use std::{
59
59
/// See <https://github.com/multiformats/multiaddr/issues/145>.
60
60
#[ derive( Debug ) ]
61
61
pub struct GenTransport < P : Provider > {
62
- /// Config for the inner [`quinn_proto `] structs.
62
+ /// Config for the inner [`quinn `] structs.
63
63
quinn_config : QuinnConfig ,
64
64
/// Timeout for the [`Connecting`] future.
65
65
handshake_timeout : Duration ,
You can’t perform that action at this time.
0 commit comments