Eio_unix.Pimodule type STREAM_SOCKET = sig ... endtype Eio.Resource.pi += | Stream_socket : ('t,
(module STREAM_SOCKET
with type t = 't),
[> `Platform of [> `Unix ] | `Socket | `Stream ])
Eio.Resource.pimodule type FLOW = sig ... endval flow_handler :
(module FLOW with type t = 't and type tag = 'tag) ->
('t, [ `Unix_fd | 'tag Eio.Net.stream_socket_ty | Eio.File.rw_ty ])
Eio.Resource.handlermodule type DATAGRAM_SOCKET = sig ... endval datagram_handler :
(module DATAGRAM_SOCKET with type t = 't and type tag = 'tag) ->
('t, [ `Unix_fd | 'tag Eio.Net.datagram_socket_ty ]) Eio.Resource.handlermodule type LISTENING_SOCKET = sig ... endval listening_socket_handler :
(module LISTENING_SOCKET with type t = 't and type tag = 'tag) ->
('t, [ `Unix_fd | 'tag Eio.Net.listening_socket_ty ]) Eio.Resource.handler