Licklider Transmission Protocol (CCSDS 734.1-B) for reliable DTN links
0
fork

Configure Feed

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

csv: rename from csvt

Drops the redundant "t" suffix. Library name, opam package, module
(Csvt -> Csv), and directory all rename in lockstep. Every downstream
reference in interop tests, libraries, and docs updated.

+3 -3
+1 -1
test/interop/ion/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries ltp csvt alcotest) 3 + (libraries ltp csv alcotest) 4 4 (deps 5 5 (source_tree traces) 6 6 (source_tree scripts)))
+2 -2
test/interop/ion/test.ml
··· 29 29 } 30 30 31 31 let vector_codec = 32 - Csvt.( 32 + Csv.( 33 33 Row.( 34 34 obj (fun name value length encoded_hex -> 35 35 { name; value; length; encoded_hex }) ··· 40 40 |> finish)) 41 41 42 42 let parse_vectors () = 43 - match Csvt.decode_file vector_codec (trace "sdnv.csv") with 43 + match Csv.decode_file vector_codec (trace "sdnv.csv") with 44 44 | Ok vs -> vs 45 45 | Error e -> Alcotest.failf "failed to parse sdnv.csv: %s" e 46 46