package mnet

  1. Overview
  2. Docs
An implementation of TCP (Transmission Control Protocol) in OCaml for Miou & Solo5

Install

dune-project
 Dependency

Authors

Maintainers

Sources

mnet-0.0.1.tbz
sha256=c3151b243150c7b7412bf27b08107bed0e132f0a271d5f5b34bc0fdffed8ec3e
sha512=4a70d77ed42519a547f7b13e76ccfa05192514ca84e9dc9dcb97a5d141a8cc4551a669017a48290d70f01790a83fbeba53950a2d5f975e8e51e7daf3017d6b5e

doc/mnet.fragments/Fragments/Make/index.html

Module Fragments.MakeSource

Parameters

Signature

Sourcetype t

The type of a mutable cache.

Sourceval create : ?to_expire:int -> unit -> t

create ?to_expire () creates a new cache where fragments are kept until to_expire nanoseconds (defaults to 10s).

Sourceval insert : now:int -> t -> Key.t -> ?last:bool -> off:int -> len:int -> SBstr.t -> (Key.t * payload) option

insert ~now cache key ?last ~off ~len slice inserts a new slice into the given cache identified by the given key. The user can specify a sub-view of the given slice and must informs if the payload is the last one or not with the last value (defaults to false).

If the cache is able to reassemble packets identified by key or if the given slice is not fragmented, it returns the key and the data. Otherwise, it returns None.