@@ -64,25 +64,55 @@ pub struct Config {
64
64
/// Timeout for the initial handshake when establishing a connection.
65
65
/// The actual timeout is the minimum of this and the [`Config::max_idle_timeout`].
66
66
pub handshake_timeout : u32 ,
67
+
67
68
/// Maximum duration of inactivity in ms to accept before timing out the connection.
68
69
pub max_idle_timeout : u32 ,
70
+
69
71
/// Period of inactivity before sending a keep-alive packet.
70
72
/// Must be set lower than the idle_timeout of both
71
73
/// peers to be effective.
72
74
///
73
75
/// See [`quinn::TransportConfig::keep_alive_interval`] for more
74
76
/// info.
75
77
pub keep_alive_interval : u32 ,
78
+
76
79
/// Maximum number of incoming bidirectional streams that may be open
77
80
/// concurrently by the remote peer.
78
81
pub max_concurrent_stream_limit : u32 ,
79
82
80
- /// Max unacknowledged data in bytes that may be sent on a single stream.
83
+ /// Maximum number of bytes the peer may transmit without acknowledgement on any one stream
84
+ /// before becoming blocked.
85
+ ///
86
+ /// This should be set to at least the expected connection latency multiplied by the maximum
87
+ /// desired throughput. Setting this smaller than `max_connection_data` helps ensure that a single
88
+ /// stream doesn't monopolize receive buffers, which may otherwise occur if the application
89
+ /// chooses not to read from a large stream for a time while still requiring data on other
90
+ /// streams.
81
91
pub max_stream_data : u32 ,
82
92
83
- /// Max unacknowledged data in bytes that may be sent in total on all streams
84
- /// of a connection.
93
+ /// Maximum number of bytes the peer may transmit across all streams of a connection before
94
+ /// becoming blocked.
95
+ ///
96
+ /// This should be set to at least the expected connection latency multiplied by the maximum
97
+ /// desired throughput. Larger values can be useful to allow maximum throughput within a
98
+ /// stream while another is blocked.
85
99
pub max_connection_data : u32 ,
100
+
101
+ /// OS socket receive buffer size.
102
+ ///
103
+ /// If this is set higher than the OS maximum, it will be clamped to the maximum allowed size.
104
+ pub receive_buffer_size : u32 ,
105
+
106
+ /// OS socket send buffer size.
107
+ ///
108
+ /// If this is set higher than the OS maximum, it will be clamped to the maximum allowed size.
109
+ pub send_buffer_size : u32 ,
110
+ }
111
+
112
+ #[ derive( Clone , Copy ) ]
113
+ pub struct SocketConfig {
114
+ pub receive_buffer_size : u32 ,
115
+ pub send_buffer_size : u32 ,
86
116
}
87
117
88
118
/// Configuration used by the QUIC library
@@ -92,6 +122,7 @@ pub struct QuinnConfig {
92
122
pub ( crate ) client_config : quinn:: ClientConfig ,
93
123
pub ( crate ) server_config : quinn:: ServerConfig ,
94
124
pub ( crate ) endpoint_config : quinn:: EndpointConfig ,
125
+ pub ( crate ) socket_config : SocketConfig ,
95
126
}
96
127
97
128
#[ napi]
@@ -113,20 +144,25 @@ impl TryFrom<Config> for QuinnConfig {
113
144
max_connection_data,
114
145
max_stream_data,
115
146
handshake_timeout : _,
147
+ receive_buffer_size,
148
+ send_buffer_size,
116
149
} = config;
117
150
118
151
let keypair = libp2p_identity:: Keypair :: from_protobuf_encoding ( & private_key_proto)
119
152
. map_err ( |e| ConfigError :: InvalidPrivateKey ( e) ) ?;
120
153
121
154
let mut transport = quinn:: TransportConfig :: default ( ) ;
155
+
156
+ // Disable features we don't use/want
122
157
// Disable uni-directional streams.
123
158
transport. max_concurrent_uni_streams ( 0u32 . into ( ) ) ;
124
- transport. max_concurrent_bidi_streams ( max_concurrent_stream_limit. into ( ) ) ;
125
159
// Disable datagrams.
126
160
transport. datagram_receive_buffer_size ( None ) ;
161
+ transport. allow_spin ( false ) ;
162
+
163
+ transport. max_concurrent_bidi_streams ( max_concurrent_stream_limit. into ( ) ) ;
127
164
transport. keep_alive_interval ( Some ( Duration :: from_millis ( keep_alive_interval. into ( ) ) ) ) ;
128
165
transport. max_idle_timeout ( Some ( quinn:: VarInt :: from_u32 ( max_idle_timeout) . into ( ) ) ) ;
129
- transport. allow_spin ( false ) ;
130
166
transport. stream_receive_window ( max_stream_data. into ( ) ) ;
131
167
transport. receive_window ( max_connection_data. into ( ) ) ;
132
168
transport. mtu_discovery_config ( Default :: default ( ) ) ;
@@ -170,6 +206,10 @@ impl TryFrom<Config> for QuinnConfig {
170
206
client_config,
171
207
server_config,
172
208
endpoint_config,
209
+ socket_config : SocketConfig {
210
+ receive_buffer_size,
211
+ send_buffer_size,
212
+ } ,
173
213
} )
174
214
}
175
215
}
0 commit comments