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 811f98c commit 59f7e50Copy full SHA for 59f7e50
rust/examples/webserver/src/main.rs
@@ -155,7 +155,7 @@ async fn main(spawner: embassy_executor::Spawner) {
155
}
156
157
let (ppp_device, ppp_runner) = embassy_net_ppp::new(make_static!(
158
- embassy_net_ppp::State<1024, 1024>,
+ embassy_net_ppp::State<64, 64>,
159
embassy_net_ppp::State::new()
160
));
161
@@ -191,7 +191,7 @@ async fn main(spawner: embassy_executor::Spawner) {
191
read_request: Some(Duration::from_secs(1)),
192
write: Some(Duration::from_secs(1)),
193
})
194
- .close_connection_after_response()
+ .keep_connection_alive()
195
);
196
197
for id in 0..WEB_TASK_POOL_SIZE {
0 commit comments