= 1024" x-on:close-sidebar="sidebar=window.innerWidth >= 1024 && true">
ON THIS PAGE
package tcpip
-
icmpv4_socket
-
tcp_socket_options
-
tcpip
-
tcpip_icmpv4
-
tcpip_stack_direct
-
tcpip_stack_socket
-
tcpip_unix
-
tcpip_xen
-
tcpv4_socket
-
tcpv6_socket
-
udpv4_socket
-
udpv6_socket
Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
Pre-transmission queue
Parameters
module Time : Mirage_time_lwt.S
module Clock : Mirage_clock.MCLOCK
Signature
val create :
clock:Clock.t ->
xmit:('a, 'b) xmit ->
wnd:Window.t ->
state:State.t ->
rx_ack:Sequence.t Lwt_mvar.t ->
tx_ack:(Sequence.t * int) Lwt_mvar.t ->
tx_wnd_update:int Lwt_mvar.t ->
t * unit Lwt.t
Queue a segment for transmission. May block if:
- There is no transmit window available.
- The wire transmit function blocks.
The transmitter should check that the segment size will not be greater than the transmit window.
ON THIS PAGE