Files
asterinas/kernel/src/net/socket/ip/stream/options.rs
2024-08-23 23:37:50 +08:00

12 lines
266 B
Rust

// SPDX-License-Identifier: MPL-2.0
use super::CongestionControl;
use crate::impl_socket_options;
impl_socket_options!(
pub struct NoDelay(bool);
pub struct Congestion(CongestionControl);
pub struct MaxSegment(u32);
pub struct WindowClamp(u32);
);