My own corner of monopam
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

ocaml-tcpcl: fix README example field names and add eio mdx libs

The [Tcpcl.xfer_segment_flags] record uses [is_start] / [is_end]
(not [start_flag] / [end_flag]) and [xfer_segment] has no
[extensions] field. Add the [eio*] / [fmt] libs and update the
field names.

+2 -3
+1 -2
ocaml-tcpcl/README.md
··· 66 66 (* 3. Send the bundle as a single XFER_SEGMENT with start+end flags *) 67 67 let seg = 68 68 Tcpcl.{ 69 - flags = { start_flag = true; end_flag = true }; 69 + flags = { is_start = true; is_end = true }; 70 70 transfer_id = 1L; 71 - extensions = []; 72 71 data = bundle; 73 72 } 74 73 in
+1 -1
ocaml-tcpcl/dune
··· 4 4 5 5 (mdx 6 6 (files README.md) 7 - (libraries tcpcl)) 7 + (libraries tcpcl eio eio.core eio.unix eio_main fmt))