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.

irmin: rename Heap.get -> Heap.find (merlint E325)

+2 -1
+2 -1
test/interop/ion/test.ml
··· 50 50 51 51 let test_encode vec () = 52 52 let encoded = Ltp.encode_sdnv vec.value in 53 - Alcotest.(check int) (vec.name ^ ": length") vec.length (String.length encoded); 53 + Alcotest.(check int) 54 + (vec.name ^ ": length") vec.length (String.length encoded); 54 55 let got_hex = hex_of_string encoded in 55 56 if got_hex <> vec.encoded_hex then 56 57 Alcotest.failf "%s: encode mismatch\n expected: %s\n got: %s"