fxi network

This commit is contained in:
anlicheng 2026-02-05 23:01:48 +08:00
parent 6f2322174d
commit 79eded8c96

View File

@ -627,5 +627,6 @@ chunk_rules(<<>>, _) ->
[];
chunk_rules(Bin, Size) when byte_size(Bin) =< Size ->
[Bin];
chunk_rules(<<Head:Size/binary, Tail/binary>>, Size) ->
chunk_rules(Bin, Size) ->
<<Head:Size/binary, Tail/binary>> = Bin,
[Head | chunk_rules(Tail, Size)].