We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10e4c01 commit 8d51d6cCopy full SHA for 8d51d6c
twinleaf/src/tio/port.rs
@@ -209,10 +209,10 @@ pub struct Port {
209
}
210
211
/// Default size of the rx channel when receiving to a crossbeam channel.
212
-pub static DEFAULT_RX_CHANNEL_SIZE: usize = 256;
+pub static DEFAULT_RX_CHANNEL_SIZE: usize = 32768;
213
214
/// Default size of the tx channel when sending to a crossbeam channel.
215
-pub static DEFAULT_TX_CHANNEL_SIZE: usize = 64;
+pub static DEFAULT_TX_CHANNEL_SIZE: usize = 32768;
216
217
impl Port {
218
/// Method running the `Port` thread event loop. It bridges `mio` and
0 commit comments