mirror of
https://github.com/denoland/deno.git
synced 2024-11-26 16:09:27 -05:00
10 lines
241 B
Rust
10 lines
241 B
Rust
|
pub fn op_set_nodelay(
|
||
|
state: &mut OpState,
|
||
|
rid: ResourceId,
|
||
|
nodelay: bool,
|
||
|
) -> Result<(), AnyError> {
|
||
|
let resource: Rc<TcpStreamResource> =
|
||
|
state.resource_table.get::<TcpStreamResource>(rid)?;
|
||
|
resource.set_nodelay(nodelay)
|
||
|
}
|