AX.25 Amateur Radio Link-Layer Protocol
0
fork

Configure Feed

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

Upgrade to ocamlformat 0.29.0; fix csvt/sexpt streaming; reformat

- Update .ocamlformat to 0.29.0 across all 591 files
- csvt: reuse single Buffer.t for field reads (no alloc per field)
- sexpt: Obj members decoded from stream into Dict, typed Variant GADT
- Reformat all source files for 0.29.0

+4 -4
+1 -1
.ocamlformat
··· 1 - version = 0.28.1 1 + version = 0.29.0
+3 -3
lib/ax25.ml
··· 470 470 Buffer.add_char bits '1'; 471 471 incr ones 472 472 end 473 - else begin 474 - if !ones = 5 then 473 + else 474 + begin if !ones = 5 then 475 475 (* Skip stuffed zero *) 476 476 ones := 0 477 477 else begin 478 478 Buffer.add_char bits '0'; 479 479 ones := 0 480 480 end 481 - end 481 + end 482 482 done 483 483 done; 484 484 (* Convert bit string back to bytes *)