• en

cstruct 1.4.0

Author Anil Madhavapeddy
License ISC
Homepage https://github.com/mirage/ocaml-cstruct
Maintainer anil@recoil.org
Tags org:mirage and org:xapi-project
Dependencies
& camlp4
ocamlfind
ocplib-endian
ounit
sexplib
Optional dependencies
| async
lwt
Published Aug 10, 2014
Source [http] https://github.com/mirage/ocaml-cstruct/archive/v1.4.0.tar.gz
1abb98c513db70654ef31c76fb379427
Edit https://github.com/ocaml/opam-repository/tree/master/packages/cstruct/cstruct.1.4.0/opam

access C structures via a camlp4 extension

Cstruct is a library and syntax extension to make it easier to access C-like structures directly from OCaml. It supports both reading and writing to these structures, and they are accessed via the Bigarray module.

An example pcap description is:

cstruct pcap_header {
  uint32_t magic_number;   (* magic number *)
  uint16_t version_major;  (* major version number *)
  uint16_t version_minor;  (* minor version number *)
  uint32_t thiszone;       (* GMT to local correction *)
  uint32_t sigfigs;        (* accuracy of timestamps *)
  uint32_t snaplen;        (* max length of captured packets, in octets *)
  uint32_t network         (* data link type *)
} as little_endian