about summary refs log tree commit diff
path: root/tvix/nix-compat/src/wire/bytes.rs
diff options
context:
space:
mode:
authorFlorian Klink <flokli@flokli.de>2024-04-04T16·02+0300
committerclbot <clbot@tvl.fyi>2024-04-04T20·23+0000
commit226b5c4b2087b0e2e0a4edfc2c518cfcb61b9e76 (patch)
tree6dff3f254a93c5dc7d15ab032c5b351ea1bbb9aa /tvix/nix-compat/src/wire/bytes.rs
parente7af8e0d62603f5fdf85307dc57b2c9599aa1936 (diff)
refactor(tvix/nix-compat): make padding_len pub(crate) r/7852
Let's make this usable for the entire crate.

Change-Id: I754408908a00296ee80dd52680f84b8a7cb22317
Reviewed-on: https://cl.tvl.fyi/c/depot/+/11354
Tested-by: BuildkiteCI
Reviewed-by: Brian Olsen <me@griff.name>
Autosubmit: flokli <flokli@flokli.de>
Reviewed-by: picnoir picnoir <picnoir@alternativebit.fr>
Diffstat (limited to '')
-rw-r--r--tvix/nix-compat/src/wire/bytes.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tvix/nix-compat/src/wire/bytes.rs b/tvix/nix-compat/src/wire/bytes.rs
index a050b16104..1a25daca8b 100644
--- a/tvix/nix-compat/src/wire/bytes.rs
+++ b/tvix/nix-compat/src/wire/bytes.rs
@@ -95,7 +95,7 @@ pub async fn read_bytes_unchecked<R: AsyncReadExt + Unpin>(r: &mut R) -> std::io
 
 /// Computes the number of bytes we should add to len (a length in
 /// bytes) to be alined on 64 bits (8 bytes).
-fn padding_len(len: u64) -> u8 {
+pub(crate) fn padding_len(len: u64) -> u8 {
     let modulo = len % 8;
     if modulo == 0 {
         0