- github
- ocaml
- opam-repository
- 65f044
- compilers,4.14,lwt.5.9.1,revdeps,tls.0.12.7
(not at the head of any monitored branch or PR)
2025-03-07 09:56.20: New job: test tls.0.12.7 with lwt.5.9.1, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/27583/head (65f0444f860f151e52fa62d523ffefb662b20944)
on debian-12-ocaml-4.14/amd64
To reproduce locally:
cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/27583/head" && git reset --hard 65f0444f
git fetch origin master
git merge --no-edit 862a7640b194b6ef60dc2d24341920e48dd021fe
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-12-ocaml-4.14@sha256:063c2b32ef761611dbb98f20a0dcb2f06dc59770f34be7739ae58d1639b9418a
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /usr/bin/opam
RUN opam init --reinit -ni
RUN opam option solver=builtin-0install && opam config report
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMPRECISETRACKING="1"
ENV CI="true"
ENV OPAM_REPO_CI="true"
RUN rm -rf opam-repository/
COPY --chown=1000:1000 . opam-repository/
RUN opam repository set-url --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn lwt.5.9.1 5.9.1
RUN opam reinstall lwt.5.9.1; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-12\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'lwt.5.9.1' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN opam reinstall tls.0.12.7; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-12\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'tls.0.12.7' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN (opam reinstall --with-test tls.0.12.7) || true
RUN opam reinstall --with-test --verbose tls.0.12.7; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-12\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'tls.0.12.7' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
END-OF-DOCKERFILE
docker build -f ../Dockerfile .
2025-03-07 09:56.20: Using cache hint "ocaml/opam:debian-12-ocaml-4.14@sha256:063c2b32ef761611dbb98f20a0dcb2f06dc59770f34be7739ae58d1639b9418a-lwt.5.9.1-tls.0.12.7-65f0444f860f151e52fa62d523ffefb662b20944"
2025-03-07 09:56.20: Using OBuilder spec:
((from ocaml/opam:debian-12-ocaml-4.14@sha256:063c2b32ef761611dbb98f20a0dcb2f06dc59770f34be7739ae58d1639b9418a)
(user (uid 1000) (gid 1000))
(workdir /home/opam)
(run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
(run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
(run (shell "opam option solver=builtin-0install && opam config report"))
(env OPAMDOWNLOADJOBS 1)
(env OPAMERRLOGLEN 0)
(env OPAMPRECISETRACKING 1)
(env CI true)
(env OPAM_REPO_CI true)
(run (shell "rm -rf opam-repository/"))
(copy (src .) (dst opam-repository/))
(run (shell "opam repository set-url --strict default opam-repository/"))
(run (network host)
(shell "opam update --depexts || true"))
(run (shell "opam pin add -k version -yn lwt.5.9.1 5.9.1"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall lwt.5.9.1;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-12\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'lwt.5.9.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall tls.0.12.7;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-12\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'tls.0.12.7' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
(run (network host)
(shell "(opam reinstall --with-test tls.0.12.7) || true"))
(run (shell "opam reinstall --with-test --verbose tls.0.12.7;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-12\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'tls.0.12.7' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2025-03-07 09:56.20: Waiting for resource in pool OCluster
2025-03-07 14:57.04: Waiting for worker…
2025-03-07 15:00.10: Got resource from pool OCluster
Building on x86-bm-c4.sw.ocaml.org
All commits already cached
Updating files: 95% (21548/22600)
Updating files: 96% (21696/22600)
Updating files: 97% (21922/22600)
Updating files: 98% (22148/22600)
Updating files: 99% (22374/22600)
Updating files: 100% (22600/22600)
Updating files: 100% (22600/22600), done.
HEAD is now at 862a7640b1 Merge pull request #27578 from kit-ty-kate/patch-3.0-revdeps
Updating 862a7640b1..65f0444f86
Fast-forward
packages/lwt/lwt.5.9.1/opam | 63 +++++++++++++++++++++++++++++++++++++
packages/lwt_ppx/lwt_ppx.5.9.1/opam | 42 +++++++++++++++++++++++++
2 files changed, 105 insertions(+)
create mode 100644 packages/lwt/lwt.5.9.1/opam
create mode 100644 packages/lwt_ppx/lwt_ppx.5.9.1/opam
(from ocaml/opam:debian-12-ocaml-4.14@sha256:063c2b32ef761611dbb98f20a0dcb2f06dc59770f34be7739ae58d1639b9418a)
Unable to find image 'ocaml/opam:debian-12-ocaml-4.14@sha256:063c2b32ef761611dbb98f20a0dcb2f06dc59770f34be7739ae58d1639b9418a' locally
docker.io/ocaml/opam@sha256:063c2b32ef761611dbb98f20a0dcb2f06dc59770f34be7739ae58d1639b9418a: Pulling from ocaml/opam
ac436a6c3d47: Pulling fs layer
ac436a6c3d47: Verifying Checksum
ac436a6c3d47: Download complete
ac436a6c3d47: Pull complete
Digest: sha256:063c2b32ef761611dbb98f20a0dcb2f06dc59770f34be7739ae58d1639b9418a
Status: Downloaded newer image for ocaml/opam@sha256:063c2b32ef761611dbb98f20a0dcb2f06dc59770f34be7739ae58d1639b9418a
2025-03-07 15:00.13 ---> using "d2dbd4e2d532e8c62f07aa22d50c50b7ad6c763419419e849ca6f7abbed6a816" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2025-03-07 15:00.13 ---> using "6107ef551409e9a51c9203dfc874837b90300e79ce7e550509a8be6e57c32b93" from cache
/home/opam: (run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
- you won't be able to use mercurial repositories unless you install the hg command on your system.
- you won't be able to use darcs repositories unless you install the darcs command on your system.
This development version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.
Continue? [Y/n] y
[NOTE] The 'jobs' option was reset, its value was 39 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
opam option jobs=39 --global
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[opam-repository-archive] synchronised from git+https://github.com/ocaml/opam-repository-archive
[default] synchronised from file:///home/opam/opam-repository
2025-03-07 15:00.13 ---> using "a1cf6f11bd1106ffb7027fe3330a262ca001823e620e406c27f998c9e3df1fdd" from cache
/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version 2.4.0~alpha1~dev (7f62f012239c88b3ce08e800578ca1d88e602f8a)
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=debian os-version=12
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 31
# repositories 1 (local), 1 (version-controlled)
# pinned 1 (version)
# current-switch 4.14
# invariant ["ocaml-base-compiler" {= "4.14.2"}]
# compiler-packages ocaml-base-compiler.4.14.2, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 4.14.2
2025-03-07 15:00.13 ---> using "151786d5197006b76ff4703b371ea0131ff28d48748f8a701414cb695132a8c5" from cache
/home/opam: (env OPAMDOWNLOADJOBS 1)
/home/opam: (env OPAMERRLOGLEN 0)
/home/opam: (env OPAMPRECISETRACKING 1)
/home/opam: (env CI true)
/home/opam: (env OPAM_REPO_CI true)
/home/opam: (run (shell "rm -rf opam-repository/"))
2025-03-07 15:00.13 ---> using "d687aaf65422492f8c62b1922bf7bf3f56a5f7cc7c5271a79621cfd60fcaa471" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2025-03-07 15:00.14 ---> using "4125c51bebb2e0eb8635e2b028691d50762178e70a589203e7d9d68b981b14f3" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-03-07 15:00.14 ---> using "ad918b3e342c65f6179107eb9698e5746a2f08c768786924c6f5abc28f023e39" from cache
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian bookworm InRelease
- Get:2 http://deb.debian.org/debian bookworm-updates InRelease [55.4 kB]
- Get:3 http://deb.debian.org/debian-security bookworm-security InRelease [48.0 kB]
- Get:4 http://deb.debian.org/debian-security bookworm-security/main amd64 Packages [246 kB]
- Fetched 349 kB in 0s (1258 kB/s)
- Reading package lists...
-
2025-03-07 15:00.14 ---> using "ed72ab6df900cc2e2771ae42b55b95b705a96c591da8a475ba3e71186a9fc355" from cache
/home/opam: (run (shell "opam pin add -k version -yn lwt.5.9.1 5.9.1"))
lwt is now pinned to version 5.9.1
2025-03-07 15:00.14 ---> using "5b10adb643313ab7a7db8f330b7eeb6c491b3921e8f1e0a5d1d9a88051089571" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall lwt.5.9.1;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-12\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'lwt.5.9.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
lwt.5.9.1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 8 packages
- install base-bytes base [required by ocplib-endian]
- install cppo 1.8.0 [required by lwt]
- install csexp 1.5.2 [required by dune-configurator]
- install dune 3.17.2 [required by lwt]
- install dune-configurator 3.17.2 [required by lwt]
- install lwt 5.9.1 (pinned)
- install ocamlfind 1.9.8 [required by base-bytes]
- install ocplib-endian 1.2 [required by lwt]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved cppo.1.8.0 (cached)
-> retrieved csexp.1.5.2 (cached)
-> retrieved dune.3.17.2, dune-configurator.3.17.2 (cached)
-> retrieved lwt.5.9.1 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved ocplib-endian.1.2 (cached)
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed dune.3.17.2
-> installed csexp.1.5.2
-> installed cppo.1.8.0
-> installed ocplib-endian.1.2
-> installed dune-configurator.3.17.2
-> installed lwt.5.9.1
Done.
# To update the current shell environment, run: eval $(opam env)
2025-03-07 15:00.14 ---> using "c587ba9727394fba9fbb4dca5e0e914a8bae07306d05391fbdf3bf3545b41fea" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall tls.0.12.7;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-12\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'tls.0.12.7' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
tls.0.12.7 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 43 packages
- install asn1-combinators 0.2.6 [required by x509]
- install base v0.16.3 [required by ppx_sexp_conv]
- install base64 3.5.1 [required by x509]
- install bigarray-compat 1.1.0 [required by cstruct, fiat-p256]
- install conf-bash 1 [required by base]
- install conf-gmp 4 [required by conf-gmp-powm-sec, zarith]
- install conf-gmp-powm-sec 3 [required by mirage-crypto-pk]
- install conf-pkg-config 4 [required by fiat-p256, hacl_x25519]
- install cstruct 6.0.1 [required by tls]
- install cstruct-sexp 6.0.1 [required by tls]
- install domain-name 0.4.1 [required by tls]
- install duration 0.2.1 [required by mirage-crypto-rng]
- install eqaf 0.9 [required by hacl_x25519, fiat-p256, mirage-crypto-pk]
- install fiat-p256 0.2.3 (deprecated) [required by tls]
- install fmt 0.9.0 [required by tls]
- install gmap 0.3.0 [required by x509]
- install hacl_x25519 0.2.2 (deprecated) [required by tls]
- install hex 1.5.0 [required by fiat-p256]
- install hkdf 1.0.4 (deprecated) [required by tls]
- install logs 0.7.0 [required by tls]
- install mirage-crypto 0.10.7 [required by tls]
- install mirage-crypto-pk 0.10.7 [required by tls]
- install mirage-crypto-rng 0.10.7 [required by tls]
- install mirage-no-solo5 1 (deprecated) [required by mirage-crypto-pk]
- install mirage-no-xen 1 (deprecated) [required by mirage-crypto-pk]
- install mtime 2.1.0 [required by mirage-crypto-rng]
- install num 1.5-1 [required by sexplib]
- install ocaml-compiler-libs v0.12.4 [required by ppxlib]
- install ocamlbuild 0.16.1 [required by logs, fmt, ptime]
- install parsexp v0.16.0 [required by sexplib]
- install ppx_cstruct 6.0.1 [required by tls]
- install ppx_derivers 1.2.1 [required by ppxlib]
- install ppx_sexp_conv v0.16.0 [required by tls]
- install ppxlib 0.35.0 [required by ppx_cstruct, ppx_sexp_conv]
- install ptime 1.2.0 [required by tls]
- install rresult 0.7.0 [required by x509]
- install sexplib v0.16.0 [required by tls]
- install sexplib0 v0.16.0 [required by mirage-crypto-pk, ppx_sexp_conv]
- install stdlib-shims 0.3.0 [required by ppx_cstruct]
- install tls 0.12.7
- install topkg 1.0.7 [required by logs, fmt, ptime]
- install x509 0.11.2 [required by tls]
- install zarith 1.14 [required by mirage-crypto-pk]
The following system packages will first need to be installed:
libgmp-dev pkg-config
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
opam believes some required external dependencies are missing. opam can:
> 1. Run apt-get to install them (may need root/sudo access)
2. Display the recommended apt-get command and wait while you run it manually (e.g. in another terminal)
3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable
4. Abort the installation
[1/2/3/4] 1
+ /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "libgmp-dev" "pkg-config"
- debconf: delaying package configuration, since apt-utils is not installed
- Selecting previously unselected package libgmpxx4ldbl:amd64.
- (Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 18745 files and directories currently installed.)
- Preparing to unpack .../0-libgmpxx4ldbl_2%3a6.2.1+dfsg1-1.1_amd64.deb ...
- Unpacking libgmpxx4ldbl:amd64 (2:6.2.1+dfsg1-1.1) ...
- Selecting previously unselected package libgmp-dev:amd64.
- Preparing to unpack .../1-libgmp-dev_2%3a6.2.1+dfsg1-1.1_amd64.deb ...
- Unpacking libgmp-dev:amd64 (2:6.2.1+dfsg1-1.1) ...
- Selecting previously unselected package libpkgconf3:amd64.
- Preparing to unpack .../2-libpkgconf3_1.8.1-1_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-1) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../3-pkgconf-bin_1.8.1-1_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-1) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../4-pkgconf_1.8.1-1_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-1) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../5-pkg-config_1.8.1-1_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-1) ...
- Setting up libpkgconf3:amd64 (1.8.1-1) ...
- Setting up libgmpxx4ldbl:amd64 (2:6.2.1+dfsg1-1.1) ...
- Setting up pkgconf-bin (1.8.1-1) ...
- Setting up libgmp-dev:amd64 (2:6.2.1+dfsg1-1.1) ...
- Setting up pkgconf:amd64 (1.8.1-1) ...
- Setting up pkg-config:amd64 (1.8.1-1) ...
- Processing triggers for libc-bin (2.36-9+deb12u9) ...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved asn1-combinators.0.2.6 (cached)
-> retrieved base.v0.16.3 (cached)
-> retrieved base64.3.5.1 (cached)
-> retrieved bigarray-compat.1.1.0 (cached)
-> retrieved conf-gmp.4 (cached)
-> retrieved conf-gmp-powm-sec.3 (cached)
-> installed conf-bash.1
-> retrieved cstruct.6.0.1, cstruct-sexp.6.0.1, ppx_cstruct.6.0.1 (cached)
-> installed conf-gmp.4
-> installed conf-pkg-config.4
-> retrieved domain-name.0.4.1 (cached)
-> retrieved duration.0.2.1 (cached)
-> retrieved eqaf.0.9 (cached)
-> retrieved fiat-p256.0.2.3 (cached)
-> retrieved fmt.0.9.0 (cached)
-> installed conf-gmp-powm-sec.3
-> retrieved gmap.0.3.0 (cached)
-> retrieved hacl_x25519.0.2.2 (cached)
-> retrieved hex.1.5.0 (cached)
-> retrieved hkdf.1.0.4 (cached)
-> retrieved logs.0.7.0 (cached)
-> installed bigarray-compat.1.1.0
-> installed duration.0.2.1
-> installed domain-name.0.4.1
-> installed gmap.0.3.0
-> installed base64.3.5.1
-> retrieved mirage-crypto.0.10.7, mirage-crypto-pk.0.10.7, mirage-crypto-rng.0.10.7 (cached)
-> installed mirage-no-solo5.1
-> installed mirage-no-xen.1
-> retrieved mtime.2.1.0 (cached)
-> retrieved num.1.5-1 (cached)
-> installed cstruct.6.0.1
-> retrieved ocaml-compiler-libs.v0.12.4 (cached)
-> retrieved ocamlbuild.0.16.1 (cached)
-> retrieved parsexp.v0.16.0 (cached)
-> retrieved ppx_derivers.1.2.1 (cached)
-> retrieved ppx_sexp_conv.v0.16.0 (cached)
-> installed hex.1.5.0
-> retrieved ppxlib.0.35.0 (cached)
-> installed ppx_derivers.1.2.1
-> retrieved ptime.1.2.0 (cached)
-> retrieved rresult.0.7.0 (cached)
-> retrieved sexplib.v0.16.0 (cached)
-> retrieved sexplib0.v0.16.0 (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> installed eqaf.0.9
-> retrieved tls.0.12.7 (cached)
-> retrieved topkg.1.0.7 (cached)
-> retrieved x509.0.11.2 (cached)
-> retrieved zarith.1.14 (cached)
-> installed stdlib-shims.0.3.0
-> installed ocaml-compiler-libs.v0.12.4
-> installed sexplib0.v0.16.0
-> installed fiat-p256.0.2.3
-> installed num.1.5-1
-> installed hacl_x25519.0.2.2
-> installed mirage-crypto.0.10.7
-> installed hkdf.1.0.4
-> installed parsexp.v0.16.0
-> installed sexplib.v0.16.0
-> installed zarith.1.14
-> installed cstruct-sexp.6.0.1
-> installed ocamlbuild.0.16.1
-> installed base.v0.16.3
-> installed topkg.1.0.7
-> installed rresult.0.7.0
-> installed fmt.0.9.0
-> installed mtime.2.1.0
-> installed ptime.1.2.0
-> installed asn1-combinators.0.2.6
-> installed logs.0.7.0
-> installed mirage-crypto-rng.0.10.7
-> installed mirage-crypto-pk.0.10.7
-> installed x509.0.11.2
-> installed ppxlib.0.35.0
-> installed ppx_cstruct.6.0.1
-> installed ppx_sexp_conv.v0.16.0
-> installed tls.0.12.7
Done.
<><> mirage-no-xen.1 installed successfully <><><><><><><><><><><><><><><><><><>
=> Note: This package is deprecated.
<><> mirage-no-solo5.1 installed successfully <><><><><><><><><><><><><><><><><>
=> Note: This package is deprecated.
<><> hkdf.1.0.4 installed successfully ><><><><><><><><><><><><><><><><><><><><>
=> Note: This package is deprecated.
<><> hacl_x25519.0.2.2 installed successfully <><><><><><><><><><><><><><><><><>
=> Note: This package is deprecated.
<><> fiat-p256.0.2.3 installed successfully <><><><><><><><><><><><><><><><><><>
=> Note: This package is deprecated.
# To update the current shell environment, run: eval $(opam env)
2025-03-07 15:01.14 ---> saved as "ab94d2a290da7c751f978d0c4b13593231aede5da9ffea0f9963c46d978de5cd"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test tls.0.12.7) || true"))
The following actions will be performed:
=== recompile 6 packages
- recompile fmt 0.9.0 [uses cmdliner]
- recompile logs 0.7.0 [uses cmdliner]
- recompile mirage-crypto-pk 0.10.7 [uses mirage-crypto-rng]
- recompile mirage-crypto-rng 0.10.7 [uses logs]
- recompile tls 0.12.7
- recompile x509 0.11.2 [uses fmt]
=== install 10 packages
- install alcotest 1.8.0 [required by tls]
- install astring 0.8.5 [required by alcotest]
- install cmdliner 1.3.0 [required by alcotest]
- install cstruct-unix 6.0.1 [required by tls]
- install ocaml-syntax-shims 1.0.0 [required by alcotest]
- install ounit 2.2.7 [required by tls]
- install ounit2 2.2.7 [required by ounit]
- install re 1.12.0 [required by alcotest]
- install seq base [required by re, ounit2]
- install uutf 1.0.3 [required by alcotest]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.8.0 (https://github.com/mirage/alcotest/releases/download/1.8.0/alcotest-1.8.0.tbz)
-> retrieved astring.0.8.5 (https://erratique.ch/software/astring/releases/astring-0.8.5.tbz)
-> retrieved cmdliner.1.3.0 (https://erratique.ch/software/cmdliner/releases/cmdliner-1.3.0.tbz)
-> retrieved cstruct-unix.6.0.1 (https://github.com/mirage/ocaml-cstruct/releases/download/v6.0.1/cstruct-v6.0.1.tbz)
-> retrieved fmt.0.9.0 (https://erratique.ch/software/fmt/releases/fmt-0.9.0.tbz)
-> installed cstruct-unix.6.0.1
-> retrieved logs.0.7.0 (https://erratique.ch/software/logs/releases/logs-0.7.0.tbz)
-> installed astring.0.8.5
-> retrieved mirage-crypto-pk.0.10.7, mirage-crypto-rng.0.10.7 (https://github.com/mirage/mirage-crypto/releases/download/v0.10.7/mirage-crypto-0.10.7.tbz)
-> retrieved ocaml-syntax-shims.1.0.0 (https://github.com/ocaml-ppx/ocaml-syntax-shims/releases/download/1.0.0/ocaml-syntax-shims-1.0.0.tbz)
-> retrieved ounit.2.2.7, ounit2.2.2.7 (https://github.com/gildor478/ounit/releases/download/v2.2.7/ounit-2.2.7.tbz)
-> retrieved re.1.12.0 (https://github.com/ocaml/ocaml-re/releases/download/1.12.0/re-1.12.0.tbz)
-> installed cmdliner.1.3.0
-> installed ocaml-syntax-shims.1.0.0
-> retrieved seq.base (2 extra sources)
-> retrieved seq.base (2 extra sources)
-> installed seq.base
-> retrieved tls.0.12.7 (https://github.com/mirleft/ocaml-tls/releases/download/v0.12.7/tls-v0.12.7.tbz)
-> removed tls.0.12.7
-> retrieved uutf.1.0.3 (https://erratique.ch/software/uutf/releases/uutf-1.0.3.tbz)
-> installed ounit2.2.2.7
-> installed ounit.2.2.7
-> installed re.1.12.0
-> retrieved x509.0.11.2 (https://github.com/mirleft/ocaml-x509/releases/download/v0.11.2/x509-v0.11.2.tbz)
-> removed x509.0.11.2
-> removed mirage-crypto-pk.0.10.7
-> removed mirage-crypto-rng.0.10.7
-> removed logs.0.7.0
-> removed fmt.0.9.0
-> installed fmt.0.9.0
-> installed uutf.1.0.3
-> installed logs.0.7.0
-> installed alcotest.1.8.0
-> installed mirage-crypto-rng.0.10.7
-> installed mirage-crypto-pk.0.10.7
-> installed x509.0.11.2
-> installed tls.0.12.7
Done.
# To update the current shell environment, run: eval $(opam env)
2025-03-07 15:01.46 ---> saved as "84f76c736c3b1da74d63060622dd0422127d18061085a26c9061d76fe603d168"
/home/opam: (run (shell "opam reinstall --with-test --verbose tls.0.12.7;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-12\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'tls.0.12.7' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
The following actions will be performed:
=== recompile 1 package
- recompile tls 0.12.7
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [tls.0.12.7: extract]
-> retrieved tls.0.12.7 (cached)
Processing 2/4: [tls: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "tls" "-j" "31" (CWD=/home/opam/.opam/4.14/.opam-switch/build/tls.0.12.7)
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -g -bin-annot -I lib/.tls.objs/byte -I /home/opam/.opam/4.14/lib/asn1-combinators -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/bigarray-compat -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/cstruct-sexp -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/eqaf -I /home/opam/.opam/4.14/lib/eqaf/bigstring -I /home/opam/.opam/4.14/lib/eqaf/cstruct -I /home/opam/.opam/4.14/lib/fiat-p256 -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/gmap -I /home/opam/.opam/4.14/lib/hacl_x25519 -I /home/opam/.opam/4.14/lib/hex -I /home/opam/.opam/4.14/lib/hkdf -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/mirage-crypto -I /home/opam/.opam/4.14/lib/mirage-crypto-pk -I /home/opam/.opam/4.14/lib/mirage-crypto-rng -I /home/opam/.opam/4.14/lib/parsexp -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/rresult -I /home/opam/.opam/4.14/lib/sexplib -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/x509 -I /home/opam/.opam/4.14/lib/zarith -no-alias-deps -open Tls -o lib/.tls.objs/byte/tls__Utils.cmo -c -impl lib/utils.pp.ml)
- File "lib/utils.ml", line 66, characters 24-35:
- 66 | let len = Cstruct.len e in
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/utils.ml", line 76, characters 14-17:
- 76 | Cstruct.((len cs1 = len cs2) && (to_bigarray cs1 = to_bigarray cs2))
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/utils.ml", line 76, characters 24-27:
- 76 | Cstruct.((len cs1 = len cs2) && (to_bigarray cs1 = to_bigarray cs2))
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/utils.ml", line 80, characters 16-27:
- 80 | let null cs = Cstruct.len cs = 0
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -I lib/.tls.objs/byte -I lib/.tls.objs/native -I /home/opam/.opam/4.14/lib/asn1-combinators -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/bigarray-compat -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/cstruct-sexp -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/eqaf -I /home/opam/.opam/4.14/lib/eqaf/bigstring -I /home/opam/.opam/4.14/lib/eqaf/cstruct -I /home/opam/.opam/4.14/lib/fiat-p256 -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/gmap -I /home/opam/.opam/4.14/lib/hacl_x25519 -I /home/opam/.opam/4.14/lib/hex -I /home/opam/.opam/4.14/lib/hkdf -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/mirage-crypto -I /home/opam/.opam/4.14/lib/mirage-crypto-pk -I /home/opam/.opam/4.14/lib/mirage-crypto-rng -I /home/opam/.opam/4.14/lib/parsexp -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/rresult -I /home/opam/.opam/4.14/lib/sexplib -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/x509 -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -open Tls -o lib/.tls.objs/native/tls__Utils.cmx -c -impl lib/utils.pp.ml)
- File "lib/utils.ml", line 66, characters 24-35:
- 66 | let len = Cstruct.len e in
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/utils.ml", line 76, characters 14-17:
- 76 | Cstruct.((len cs1 = len cs2) && (to_bigarray cs1 = to_bigarray cs2))
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/utils.ml", line 76, characters 24-27:
- 76 | Cstruct.((len cs1 = len cs2) && (to_bigarray cs1 = to_bigarray cs2))
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/utils.ml", line 80, characters 16-27:
- 80 | let null cs = Cstruct.len cs = 0
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -g -bin-annot -I lib/.tls.objs/byte -I /home/opam/.opam/4.14/lib/asn1-combinators -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/bigarray-compat -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/cstruct-sexp -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/eqaf -I /home/opam/.opam/4.14/lib/eqaf/bigstring -I /home/opam/.opam/4.14/lib/eqaf/cstruct -I /home/opam/.opam/4.14/lib/fiat-p256 -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/gmap -I /home/opam/.opam/4.14/lib/hacl_x25519 -I /home/opam/.opam/4.14/lib/hex -I /home/opam/.opam/4.14/lib/hkdf -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/mirage-crypto -I /home/opam/.opam/4.14/lib/mirage-crypto-pk -I /home/opam/.opam/4.14/lib/mirage-crypto-rng -I /home/opam/.opam/4.14/lib/parsexp -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/rresult -I /home/opam/.opam/4.14/lib/sexplib -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/x509 -I /home/opam/.opam/4.14/lib/zarith -no-alias-deps -open Tls -o lib/.tls.objs/byte/tls__Core.cmo -c -impl lib/core.pp.ml)
- File "lib/core.ml", line 115, characters 4-15:
- 115 | Cstruct.len binder + 1 (* binder len *)
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -g -bin-annot -I lib/.tls.objs/byte -I /home/opam/.opam/4.14/lib/asn1-combinators -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/bigarray-compat -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/cstruct-sexp -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/eqaf -I /home/opam/.opam/4.14/lib/eqaf/bigstring -I /home/opam/.opam/4.14/lib/eqaf/cstruct -I /home/opam/.opam/4.14/lib/fiat-p256 -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/gmap -I /home/opam/.opam/4.14/lib/hacl_x25519 -I /home/opam/.opam/4.14/lib/hex -I /home/opam/.opam/4.14/lib/hkdf -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/mirage-crypto -I /home/opam/.opam/4.14/lib/mirage-crypto-pk -I /home/opam/.opam/4.14/lib/mirage-crypto-rng -I /home/opam/.opam/4.14/lib/parsexp -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/rresult -I /home/opam/.opam/4.14/lib/sexplib -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/x509 -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -open Tls -o lib/.tls.objs/byte/tls__Writer.cmo -c -impl lib/writer.pp.ml)
- File "lib/writer.ml", line 28, characters 23-26:
- 28 | BE.set_uint16 buf 3 (len payload);
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/writer.ml", line 38, characters 22-25:
- 38 | set_uint8 l 0 (len body) ;
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/writer.ml", line 42, characters 26-29:
- 42 | BE.set_uint16 l 0 (len body) ;
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/writer.ml", line 46, characters 25-28:
- 46 | set_uint24_len l (len body) ;
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/writer.ml", line 61, characters 15-18:
- 61 | let length = len c in
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/writer.ml", line 119, characters 25-28:
- 119 | BE.set_uint16 buf 0 (len x) ;
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/writer.ml", line 146, characters 21-24:
- 146 | BE.set_uint16 l 0 (len ks) ;
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/writer.ml", line 151, characters 26-29:
- 151 | BE.set_uint16 id_len 0 (len id) ;
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/writer.ml", line 158, characters 21-24:
- 158 | set_uint8 b_len 0 (len b) ;
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/writer.ml", line 181, characters 22-25:
- 181 | set_uint8 buf 0 (len x);
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/writer.ml", line 188, characters 21-24:
- 188 | BE.set_uint16 l 0 (len c) ;
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/writer.ml", line 202, characters 23-26:
- 202 | BE.set_uint16 buf 2 (len pay);
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/writer.ml", line 211, characters 26-29:
- 211 | BE.set_uint16 lenbuf 0 (len data) ;
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/writer.ml", line 227, characters 20-23:
- 227 | set_uint8 clen 0 (len context) ;
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/writer.ml", line 300, characters 17-20:
- 300 | set_uint8 l 0 (len context) ;
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/writer.ml", line 307, characters 31-34:
- 307 | | Some s -> set_uint8 buf 0 (len s); buf <+> s
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/writer.ml", line 342, characters 19-22:
- 342 | let buflen = len bbuf + len extensions + 4 (* see above, header *) in
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/writer.ml", line 342, characters 30-33:
- 342 | let buflen = len bbuf + len extensions + 4 (* see above, header *) in
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/writer.ml", line 344, characters 14-17:
- 344 | match len extensions with
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/writer.ml", line 350, characters 44-47:
- 350 | BE.set_uint16 extension_length 0 (len padding);
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/writer.ml", line 357, characters 21-24:
- 357 | let elen = len extensions + len padding - 2 (* the 16 bit length field *) in
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/writer.ml", line 357, characters 38-41:
- 357 | let elen = len extensions + len padding - 2 (* the 16 bit length field *) in
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/writer.ml", line 379, characters 27-30:
- 379 | let plen, glen, yslen = (len p.dh_p, len p.dh_g, len p.dh_Ys) in
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/writer.ml", line 379, characters 39-42:
- 379 | let plen, glen, yslen = (len p.dh_p, len p.dh_g, len p.dh_Ys) in
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/writer.ml", line 379, characters 51-54:
- 379 | let plen, glen, yslen = (len p.dh_p, len p.dh_g, len p.dh_Ys) in
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/writer.ml", line 393, characters 19-22:
- 393 | set_uint8 hdr 3 (len point);
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/writer.ml", line 398, characters 26-29:
- 398 | BE.set_uint16 lenbuf 0 (len signature);
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/writer.ml", line 417, characters 19-22:
- 417 | set_uint8 buf 8 (len se.nonce) ;
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/writer.ml", line 419, characters 29-32:
- 419 | BE.set_uint16 ticketlen 0 (len se.ticket) ;
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/writer.ml", line 424, characters 12-15:
- 424 | let len = len kex in
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/writer.ml", line 431, characters 12-15:
- 431 | let len = len kex in
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/writer.ml", line 488, characters 16-19:
- 488 | let pay_len = len payload in
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -g -bin-annot -I lib/.tls.objs/byte -I /home/opam/.opam/4.14/lib/asn1-combinators -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/bigarray-compat -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/cstruct-sexp -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/eqaf -I /home/opam/.opam/4.14/lib/eqaf/bigstring -I /home/opam/.opam/4.14/lib/eqaf/cstruct -I /home/opam/.opam/4.14/lib/fiat-p256 -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/gmap -I /home/opam/.opam/4.14/lib/hacl_x25519 -I /home/opam/.opam/4.14/lib/hex -I /home/opam/.opam/4.14/lib/hkdf -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/mirage-crypto -I /home/opam/.opam/4.14/lib/mirage-crypto-pk -I /home/opam/.opam/4.14/lib/mirage-crypto-rng -I /home/opam/.opam/4.14/lib/parsexp -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/rresult -I /home/opam/.opam/4.14/lib/sexplib -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/x509 -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -open Tls -o lib/.tls.objs/byte/tls__Reader.cmo -c -impl lib/reader.pp.ml)
- File "lib/reader.ml", line 60, characters 5-8:
- 60 | if len buf < 5 then
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 72, characters 21-24:
- 72 | | x when 5 + x > len buf -> return (`Fragment buf)
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 123, characters 5-8:
- 123 | if len buf <> 2 then
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 134, characters 8-11:
- 134 | match len buf, get_uint8 buf 0 with
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 146, characters 8-11:
- 146 | match len buf with
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 180, characters 8-11:
- 180 | match len buf with
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 199, characters 5-8:
- 199 | if len buf <> 1 then
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 229, characters 7-10:
- 229 | if len rt <> 0 then
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 255, characters 5-8:
- 255 | if len buf <> length + 2 then
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 267, characters 10-13:
- 267 | if len buf <> len' + 1 then
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 272, characters 9-12:
- 272 | if len buf > 0 then
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 308, characters 5-8:
- 308 | if len buf <> 4 + binders_len + id_len then
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 354, characters 10-13:
- 354 | if len rt <> 0 then
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 363, characters 20-23:
- 363 | if ll + 2 <> len buf then
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 372, characters 9-12:
- 372 | if len buf <> 0 then
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 378, characters 9-12:
- 378 | if len rt <> 0 then
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 383, characters 9-12:
- 383 | if len buf = 0 then
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 389, characters 9-12:
- 389 | if len rt <> 0 then
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 395, characters 9-12:
- 395 | if len rt <> 0 then
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 414, characters 21-24:
- 414 | | _, xs when len xs <> 0 -> raise_trailing_bytes "server keyshare"
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 421, characters 9-12:
- 421 | if len buf <> 2 then
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 456, characters 10-13:
- 456 | if len buf <> 0 then
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 472, characters 11-14:
- 472 | if len rt <> 0 then
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 484, characters 10-13:
- 484 | if len rt <> 0 then
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 494, characters 5-8:
- 494 | if len buf <> length + 2 then
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 507, characters 7-10:
- 507 | if len rt' == 0 then [] else parse_extensions parse_client_extension rt'
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 537, characters 11-14:
- 537 | if len rt' == 0 then [] else parse_extensions parse_retry_extension rt'
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 552, characters 9-12:
- 552 | if len rt' == 0 then [] else parse_extensions parse_server_extension rt'
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 568, characters 5-8:
- 568 | if len buf <> length + 3 then
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 591, characters 5-8:
- 591 | if len buf <> length + 3 then
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 625, characters 5-8:
- 625 | if len buf' <> 0 then
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 637, characters 5-8:
- 637 | if len buf' <> 0 then
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 650, characters 9-12:
- 650 | if len rt <> 0 then
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 656, characters 9-12:
- 656 | if len rt <> 0 then
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 715, characters 5-8:
- 715 | if len buf <> siglen + 2 then
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 734, characters 9-12:
- 734 | if len buf <> 4 then
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 756, characters 5-8:
- 756 | if len buf <> length + 2 then
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 765, characters 5-8:
- 765 | if len buf <> length + 1 then
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 773, characters 5-8:
- 773 | if len buf <> 1 then
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 781, characters 5-8:
- 781 | if len buf < 4 then
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 786, characters 7-10:
- 786 | if len buf >= hslen then
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 796, characters 5-8:
- 796 | if len buf <> length + 4 then
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 802, characters 9-12:
- 802 | if len payload = 0 then HelloRequest else raise_trailing_bytes "hello request"
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 809, characters 9-12:
- 809 | if len payload = 0 then ServerHelloDone else raise_trailing_bytes "server hello done"
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -I lib/.tls.objs/byte -I lib/.tls.objs/native -I /home/opam/.opam/4.14/lib/asn1-combinators -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/bigarray-compat -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/cstruct-sexp -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/eqaf -I /home/opam/.opam/4.14/lib/eqaf/bigstring -I /home/opam/.opam/4.14/lib/eqaf/cstruct -I /home/opam/.opam/4.14/lib/fiat-p256 -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/gmap -I /home/opam/.opam/4.14/lib/hacl_x25519 -I /home/opam/.opam/4.14/lib/hex -I /home/opam/.opam/4.14/lib/hkdf -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/mirage-crypto -I /home/opam/.opam/4.14/lib/mirage-crypto-pk -I /home/opam/.opam/4.14/lib/mirage-crypto-rng -I /home/opam/.opam/4.14/lib/parsexp -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/rresult -I /home/opam/.opam/4.14/lib/sexplib -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/x509 -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -open Tls -o lib/.tls.objs/native/tls__Core.cmx -c -impl lib/core.pp.ml)
- File "lib/core.ml", line 115, characters 4-15:
- 115 | Cstruct.len binder + 1 (* binder len *)
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -g -bin-annot -I lib/.tls.objs/byte -I /home/opam/.opam/4.14/lib/asn1-combinators -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/bigarray-compat -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/cstruct-sexp -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/eqaf -I /home/opam/.opam/4.14/lib/eqaf/bigstring -I /home/opam/.opam/4.14/lib/eqaf/cstruct -I /home/opam/.opam/4.14/lib/fiat-p256 -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/gmap -I /home/opam/.opam/4.14/lib/hacl_x25519 -I /home/opam/.opam/4.14/lib/hex -I /home/opam/.opam/4.14/lib/hkdf -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/mirage-crypto -I /home/opam/.opam/4.14/lib/mirage-crypto-pk -I /home/opam/.opam/4.14/lib/mirage-crypto-rng -I /home/opam/.opam/4.14/lib/parsexp -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/rresult -I /home/opam/.opam/4.14/lib/sexplib -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/x509 -I /home/opam/.opam/4.14/lib/zarith -no-alias-deps -open Tls -o lib/.tls.objs/byte/tls__Crypto.cmo -c -impl lib/crypto.pp.ml)
- File "lib/crypto.ml", line 80, characters 12-23:
- 80 | let l = Cstruct.len nonce in
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/crypto.ml", line 121, characters 16-19:
- 121 | let len = 1 + len data in
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/crypto.ml", line 133, characters 12-15:
- 133 | let len = len data in
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -g -bin-annot -I lib/.tls.objs/byte -I /home/opam/.opam/4.14/lib/asn1-combinators -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/bigarray-compat -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/cstruct-sexp -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/eqaf -I /home/opam/.opam/4.14/lib/eqaf/bigstring -I /home/opam/.opam/4.14/lib/eqaf/cstruct -I /home/opam/.opam/4.14/lib/fiat-p256 -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/gmap -I /home/opam/.opam/4.14/lib/hacl_x25519 -I /home/opam/.opam/4.14/lib/hex -I /home/opam/.opam/4.14/lib/hkdf -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/mirage-crypto -I /home/opam/.opam/4.14/lib/mirage-crypto-pk -I /home/opam/.opam/4.14/lib/mirage-crypto-rng -I /home/opam/.opam/4.14/lib/parsexp -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/rresult -I /home/opam/.opam/4.14/lib/sexplib -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/x509 -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -open Tls -o lib/.tls.objs/byte/tls__Handshake_crypto.cmo -c -impl lib/handshake_crypto.pp.ml)
- File "lib/handshake_crypto.ml", line 8, characters 13-24:
- 8 | let size = Cstruct.len secret in
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -g -bin-annot -I lib/.tls.objs/byte -I /home/opam/.opam/4.14/lib/asn1-combinators -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/bigarray-compat -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/cstruct-sexp -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/eqaf -I /home/opam/.opam/4.14/lib/eqaf/bigstring -I /home/opam/.opam/4.14/lib/eqaf/cstruct -I /home/opam/.opam/4.14/lib/fiat-p256 -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/gmap -I /home/opam/.opam/4.14/lib/hacl_x25519 -I /home/opam/.opam/4.14/lib/hex -I /home/opam/.opam/4.14/lib/hkdf -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/mirage-crypto -I /home/opam/.opam/4.14/lib/mirage-crypto-pk -I /home/opam/.opam/4.14/lib/mirage-crypto-rng -I /home/opam/.opam/4.14/lib/parsexp -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/rresult -I /home/opam/.opam/4.14/lib/sexplib -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/x509 -I /home/opam/.opam/4.14/lib/zarith -no-alias-deps -open Tls -o lib/.tls.objs/byte/tls__Handshake_crypto13.cmo -c -impl lib/handshake_crypto13.pp.ml)
- File "lib/handshake_crypto13.ml", line 10, characters 40-51:
- 10 | let padding = Cstruct.create (bytes - Cstruct.len msg) in
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/handshake_crypto13.ml", line 16, characters 35-46:
- 16 | let all_zero = Cstruct.create (Cstruct.len cs) in
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/handshake_crypto13.ml", line 25, characters 7-18:
- 25 | if Cstruct.len share = cdiv bits 8 then
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/handshake_crypto13.ml", line 82, characters 27-38:
- 82 | Cstruct.set_uint8 l 0 (Cstruct.len lbl) ;
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/handshake_crypto13.ml", line 86, characters 27-38:
- 86 | Cstruct.set_uint8 l 0 (Cstruct.len context) ;
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -I lib/.tls.objs/byte -I lib/.tls.objs/native -I /home/opam/.opam/4.14/lib/asn1-combinators -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/bigarray-compat -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/cstruct-sexp -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/eqaf -I /home/opam/.opam/4.14/lib/eqaf/bigstring -I /home/opam/.opam/4.14/lib/eqaf/cstruct -I /home/opam/.opam/4.14/lib/fiat-p256 -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/gmap -I /home/opam/.opam/4.14/lib/hacl_x25519 -I /home/opam/.opam/4.14/lib/hex -I /home/opam/.opam/4.14/lib/hkdf -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/mirage-crypto -I /home/opam/.opam/4.14/lib/mirage-crypto-pk -I /home/opam/.opam/4.14/lib/mirage-crypto-rng -I /home/opam/.opam/4.14/lib/parsexp -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/rresult -I /home/opam/.opam/4.14/lib/sexplib -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/x509 -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -open Tls -o lib/.tls.objs/native/tls__Writer.cmx -c -impl lib/writer.pp.ml)
- File "lib/writer.ml", line 28, characters 23-26:
- 28 | BE.set_uint16 buf 3 (len payload);
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/writer.ml", line 38, characters 22-25:
- 38 | set_uint8 l 0 (len body) ;
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/writer.ml", line 42, characters 26-29:
- 42 | BE.set_uint16 l 0 (len body) ;
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/writer.ml", line 46, characters 25-28:
- 46 | set_uint24_len l (len body) ;
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/writer.ml", line 61, characters 15-18:
- 61 | let length = len c in
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/writer.ml", line 119, characters 25-28:
- 119 | BE.set_uint16 buf 0 (len x) ;
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/writer.ml", line 146, characters 21-24:
- 146 | BE.set_uint16 l 0 (len ks) ;
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/writer.ml", line 151, characters 26-29:
- 151 | BE.set_uint16 id_len 0 (len id) ;
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/writer.ml", line 158, characters 21-24:
- 158 | set_uint8 b_len 0 (len b) ;
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/writer.ml", line 181, characters 22-25:
- 181 | set_uint8 buf 0 (len x);
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/writer.ml", line 188, characters 21-24:
- 188 | BE.set_uint16 l 0 (len c) ;
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/writer.ml", line 202, characters 23-26:
- 202 | BE.set_uint16 buf 2 (len pay);
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/writer.ml", line 211, characters 26-29:
- 211 | BE.set_uint16 lenbuf 0 (len data) ;
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/writer.ml", line 227, characters 20-23:
- 227 | set_uint8 clen 0 (len context) ;
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/writer.ml", line 300, characters 17-20:
- 300 | set_uint8 l 0 (len context) ;
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/writer.ml", line 307, characters 31-34:
- 307 | | Some s -> set_uint8 buf 0 (len s); buf <+> s
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/writer.ml", line 342, characters 19-22:
- 342 | let buflen = len bbuf + len extensions + 4 (* see above, header *) in
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/writer.ml", line 342, characters 30-33:
- 342 | let buflen = len bbuf + len extensions + 4 (* see above, header *) in
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/writer.ml", line 344, characters 14-17:
- 344 | match len extensions with
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/writer.ml", line 350, characters 44-47:
- 350 | BE.set_uint16 extension_length 0 (len padding);
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/writer.ml", line 357, characters 21-24:
- 357 | let elen = len extensions + len padding - 2 (* the 16 bit length field *) in
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/writer.ml", line 357, characters 38-41:
- 357 | let elen = len extensions + len padding - 2 (* the 16 bit length field *) in
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/writer.ml", line 379, characters 27-30:
- 379 | let plen, glen, yslen = (len p.dh_p, len p.dh_g, len p.dh_Ys) in
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/writer.ml", line 379, characters 39-42:
- 379 | let plen, glen, yslen = (len p.dh_p, len p.dh_g, len p.dh_Ys) in
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/writer.ml", line 379, characters 51-54:
- 379 | let plen, glen, yslen = (len p.dh_p, len p.dh_g, len p.dh_Ys) in
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/writer.ml", line 393, characters 19-22:
- 393 | set_uint8 hdr 3 (len point);
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/writer.ml", line 398, characters 26-29:
- 398 | BE.set_uint16 lenbuf 0 (len signature);
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/writer.ml", line 417, characters 19-22:
- 417 | set_uint8 buf 8 (len se.nonce) ;
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/writer.ml", line 419, characters 29-32:
- 419 | BE.set_uint16 ticketlen 0 (len se.ticket) ;
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/writer.ml", line 424, characters 12-15:
- 424 | let len = len kex in
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/writer.ml", line 431, characters 12-15:
- 431 | let len = len kex in
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/writer.ml", line 488, characters 16-19:
- 488 | let pay_len = len payload in
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -I lib/.tls.objs/byte -I lib/.tls.objs/native -I /home/opam/.opam/4.14/lib/asn1-combinators -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/bigarray-compat -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/cstruct-sexp -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/eqaf -I /home/opam/.opam/4.14/lib/eqaf/bigstring -I /home/opam/.opam/4.14/lib/eqaf/cstruct -I /home/opam/.opam/4.14/lib/fiat-p256 -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/gmap -I /home/opam/.opam/4.14/lib/hacl_x25519 -I /home/opam/.opam/4.14/lib/hex -I /home/opam/.opam/4.14/lib/hkdf -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/mirage-crypto -I /home/opam/.opam/4.14/lib/mirage-crypto-pk -I /home/opam/.opam/4.14/lib/mirage-crypto-rng -I /home/opam/.opam/4.14/lib/parsexp -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/rresult -I /home/opam/.opam/4.14/lib/sexplib -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/x509 -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -open Tls -o lib/.tls.objs/native/tls__Reader.cmx -c -impl lib/reader.pp.ml)
- File "lib/reader.ml", line 60, characters 5-8:
- 60 | if len buf < 5 then
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 72, characters 21-24:
- 72 | | x when 5 + x > len buf -> return (`Fragment buf)
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 123, characters 5-8:
- 123 | if len buf <> 2 then
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 134, characters 8-11:
- 134 | match len buf, get_uint8 buf 0 with
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 146, characters 8-11:
- 146 | match len buf with
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 180, characters 8-11:
- 180 | match len buf with
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 199, characters 5-8:
- 199 | if len buf <> 1 then
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 229, characters 7-10:
- 229 | if len rt <> 0 then
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 255, characters 5-8:
- 255 | if len buf <> length + 2 then
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 267, characters 10-13:
- 267 | if len buf <> len' + 1 then
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 272, characters 9-12:
- 272 | if len buf > 0 then
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 308, characters 5-8:
- 308 | if len buf <> 4 + binders_len + id_len then
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 354, characters 10-13:
- 354 | if len rt <> 0 then
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 363, characters 20-23:
- 363 | if ll + 2 <> len buf then
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 372, characters 9-12:
- 372 | if len buf <> 0 then
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 378, characters 9-12:
- 378 | if len rt <> 0 then
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 383, characters 9-12:
- 383 | if len buf = 0 then
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 389, characters 9-12:
- 389 | if len rt <> 0 then
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 395, characters 9-12:
- 395 | if len rt <> 0 then
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 414, characters 21-24:
- 414 | | _, xs when len xs <> 0 -> raise_trailing_bytes "server keyshare"
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 421, characters 9-12:
- 421 | if len buf <> 2 then
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 456, characters 10-13:
- 456 | if len buf <> 0 then
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 472, characters 11-14:
- 472 | if len rt <> 0 then
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 484, characters 10-13:
- 484 | if len rt <> 0 then
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 494, characters 5-8:
- 494 | if len buf <> length + 2 then
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 507, characters 7-10:
- 507 | if len rt' == 0 then [] else parse_extensions parse_client_extension rt'
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 537, characters 11-14:
- 537 | if len rt' == 0 then [] else parse_extensions parse_retry_extension rt'
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 552, characters 9-12:
- 552 | if len rt' == 0 then [] else parse_extensions parse_server_extension rt'
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 568, characters 5-8:
- 568 | if len buf <> length + 3 then
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 591, characters 5-8:
- 591 | if len buf <> length + 3 then
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 625, characters 5-8:
- 625 | if len buf' <> 0 then
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 637, characters 5-8:
- 637 | if len buf' <> 0 then
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 650, characters 9-12:
- 650 | if len rt <> 0 then
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 656, characters 9-12:
- 656 | if len rt <> 0 then
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 715, characters 5-8:
- 715 | if len buf <> siglen + 2 then
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 734, characters 9-12:
- 734 | if len buf <> 4 then
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 756, characters 5-8:
- 756 | if len buf <> length + 2 then
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 765, characters 5-8:
- 765 | if len buf <> length + 1 then
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 773, characters 5-8:
- 773 | if len buf <> 1 then
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 781, characters 5-8:
- 781 | if len buf < 4 then
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 786, characters 7-10:
- 786 | if len buf >= hslen then
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 796, characters 5-8:
- 796 | if len buf <> length + 4 then
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 802, characters 9-12:
- 802 | if len payload = 0 then HelloRequest else raise_trailing_bytes "hello request"
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/reader.ml", line 809, characters 9-12:
- 809 | if len payload = 0 then ServerHelloDone else raise_trailing_bytes "server hello done"
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -g -bin-annot -I lib/.tls.objs/byte -I /home/opam/.opam/4.14/lib/asn1-combinators -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/bigarray-compat -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/cstruct-sexp -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/eqaf -I /home/opam/.opam/4.14/lib/eqaf/bigstring -I /home/opam/.opam/4.14/lib/eqaf/cstruct -I /home/opam/.opam/4.14/lib/fiat-p256 -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/gmap -I /home/opam/.opam/4.14/lib/hacl_x25519 -I /home/opam/.opam/4.14/lib/hex -I /home/opam/.opam/4.14/lib/hkdf -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/mirage-crypto -I /home/opam/.opam/4.14/lib/mirage-crypto-pk -I /home/opam/.opam/4.14/lib/mirage-crypto-rng -I /home/opam/.opam/4.14/lib/parsexp -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/rresult -I /home/opam/.opam/4.14/lib/sexplib -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/x509 -I /home/opam/.opam/4.14/lib/zarith -no-alias-deps -open Tls -o lib/.tls.objs/byte/tls__Handshake_client13.cmo -c -impl lib/handshake_client13.pp.ml)
- File "lib/handshake_client13.ml", line 84, characters 46-57:
- 84 | let ch0_hdr = Writer.assemble_message_hash (Cstruct.len ch0_data) in
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -g -bin-annot -I lib/.tls.objs/byte -I /home/opam/.opam/4.14/lib/asn1-combinators -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/bigarray-compat -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/cstruct-sexp -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/eqaf -I /home/opam/.opam/4.14/lib/eqaf/bigstring -I /home/opam/.opam/4.14/lib/eqaf/cstruct -I /home/opam/.opam/4.14/lib/fiat-p256 -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/gmap -I /home/opam/.opam/4.14/lib/hacl_x25519 -I /home/opam/.opam/4.14/lib/hex -I /home/opam/.opam/4.14/lib/hkdf -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/mirage-crypto -I /home/opam/.opam/4.14/lib/mirage-crypto-pk -I /home/opam/.opam/4.14/lib/mirage-crypto-rng -I /home/opam/.opam/4.14/lib/parsexp -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/rresult -I /home/opam/.opam/4.14/lib/sexplib -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/x509 -I /home/opam/.opam/4.14/lib/zarith -no-alias-deps -open Tls -o lib/.tls.objs/byte/tls__Handshake_server13.cmo -c -impl lib/handshake_server13.pp.ml)
- File "lib/handshake_server13.ml", line 106, characters 56-67:
- 106 | let hash_hdr = Writer.assemble_message_hash (Cstruct.len c) in
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/handshake_server13.ml", line 185, characters 58-61:
- 185 | let ch_part = Cstruct.(sub raw 0 (len raw - binders_len)) in
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -g -bin-annot -I lwt/.tls_lwt.objs/byte -I /home/opam/.opam/4.14/lib/asn1-combinators -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/bigarray-compat -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/cstruct-sexp -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/duration -I /home/opam/.opam/4.14/lib/eqaf -I /home/opam/.opam/4.14/lib/eqaf/bigstring -I /home/opam/.opam/4.14/lib/eqaf/cstruct -I /home/opam/.opam/4.14/lib/fiat-p256 -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/gmap -I /home/opam/.opam/4.14/lib/hacl_x25519 -I /home/opam/.opam/4.14/lib/hex -I /home/opam/.opam/4.14/lib/hkdf -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/lwt/unix -I /home/opam/.opam/4.14/lib/mirage-crypto -I /home/opam/.opam/4.14/lib/mirage-crypto-pk -I /home/opam/.opam/4.14/lib/mirage-crypto-rng -I /home/opam/.opam/4.14/lib/mirage-crypto-rng/lwt -I /home/opam/.opam/4.14/lib/mirage-crypto-rng/unix -I /home/opam/.opam/4.14/lib/mtime -I /home/opam/.opam/4.14/lib/mtime/clock -I /home/opam/.opam/4.14/lib/ocaml/threads -I /home/opam/.opam/4.14/lib/ocplib-endian -I /home/opam/.opam/4.14/lib/ocplib-endian/bigstring -I /home/opam/.opam/4.14/lib/parsexp -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/ptime/clock -I /home/opam/.opam/4.14/lib/rresult -I /home/opam/.opam/4.14/lib/sexplib -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/x509 -I /home/opam/.opam/4.14/lib/zarith -I lib/.tls.objs/byte -intf-suffix .ml -no-alias-deps -o lwt/.tls_lwt.objs/byte/tls_lwt.cmo -c -impl lwt/tls_lwt.ml)
- File "lwt/tls_lwt.ml", line 30, characters 14-25:
- 30 | | cs when Cstruct.len cs = 0 -> return_unit
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lwt/tls_lwt.ml", line 95, characters 17-20:
- 95 | let rlen = len res in
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lwt/tls_lwt.ml", line 96, characters 22-25:
- 96 | let n = min (len buf) rlen in
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -g -bin-annot -I lib/.tls.objs/byte -I /home/opam/.opam/4.14/lib/asn1-combinators -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/bigarray-compat -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/cstruct-sexp -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/eqaf -I /home/opam/.opam/4.14/lib/eqaf/bigstring -I /home/opam/.opam/4.14/lib/eqaf/cstruct -I /home/opam/.opam/4.14/lib/fiat-p256 -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/gmap -I /home/opam/.opam/4.14/lib/hacl_x25519 -I /home/opam/.opam/4.14/lib/hex -I /home/opam/.opam/4.14/lib/hkdf -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/mirage-crypto -I /home/opam/.opam/4.14/lib/mirage-crypto-pk -I /home/opam/.opam/4.14/lib/mirage-crypto-rng -I /home/opam/.opam/4.14/lib/parsexp -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/rresult -I /home/opam/.opam/4.14/lib/sexplib -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/x509 -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -open Tls -o lib/.tls.objs/byte/tls__Handshake_server.cmo -c -impl lib/handshake_server.pp.ml)
- File "lib/handshake_server.ml", line 120, characters 10-21:
- 120 | match Cstruct.len k == 48, Reader.parse_any_version k with
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/handshake_server.ml", line 188, characters 47-58:
- 188 | let rst = Mirage_crypto_rng.generate (32 - Cstruct.len suffix) in
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/handshake_server.ml", line 198, characters 10-21:
- 198 | match Cstruct.len session.session_id with
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -g -bin-annot -I lib/.tls.objs/byte -I /home/opam/.opam/4.14/lib/asn1-combinators -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/bigarray-compat -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/cstruct-sexp -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/eqaf -I /home/opam/.opam/4.14/lib/eqaf/bigstring -I /home/opam/.opam/4.14/lib/eqaf/cstruct -I /home/opam/.opam/4.14/lib/fiat-p256 -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/gmap -I /home/opam/.opam/4.14/lib/hacl_x25519 -I /home/opam/.opam/4.14/lib/hex -I /home/opam/.opam/4.14/lib/hkdf -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/mirage-crypto -I /home/opam/.opam/4.14/lib/mirage-crypto-pk -I /home/opam/.opam/4.14/lib/mirage-crypto-rng -I /home/opam/.opam/4.14/lib/parsexp -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/rresult -I /home/opam/.opam/4.14/lib/sexplib -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/x509 -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -open Tls -o lib/.tls.objs/byte/tls__Engine.cmo -c -impl lib/engine.pp.ml)
- File "lib/engine.ml", line 141, characters 42-53:
- 141 | let adata = Crypto.adata_1_3 (Cstruct.len buf + Crypto.tag_len c.cipher) in
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/engine.ml", line 150, characters 41-52:
- 150 | Crypto.pseudo_header seq ty ver (Cstruct.len buf)
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/engine.ml", line 194, characters 17-28:
- 194 | let macstart = Cstruct.len decrypted - Mirage_crypto.Hash.digest_size mac in
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/engine.ml", line 199, characters 52-63:
- 199 | let hdr = Crypto.pseudo_header sequence ty ver (Cstruct.len body) in
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/engine.ml", line 238, characters 15-26:
- 238 | if Cstruct.len buf < Crypto.cbc_block c.cipher then
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/engine.ml", line 251, characters 43-54:
- 251 | Crypto.pseudo_header seq ty ver (Cstruct.len buf - Crypto.tag_len c.cipher)
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/engine.ml", line 259, characters 11-22:
- 259 | if Cstruct.len buf < explicit_nonce_len then
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/engine.ml", line 265, characters 45-56:
- 265 | Crypto.pseudo_header seq ty ver (Cstruct.len buf - Crypto.tag_len c.cipher)
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/engine.ml", line 299, characters 23-34:
- 299 | eat (pred (Cstruct.len x))
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/engine.ml", line 301, characters 40-51:
- 301 | let adata = Crypto.adata_1_3 (Cstruct.len buf) in
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/engine.ml", line 344, characters 25-36:
- 344 | | (t1, a) :: xs when Cstruct.len a >= 1 lsl 14 ->
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/engine.ml", line 428, characters 5-16:
- 428 | if Cstruct.len cs = 0 then None else Some cs
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/engine.ml", line 443, characters 53-64:
- 443 | if hs_can_handle_appdata hs || (early_data hs && Cstruct.len hs.hs_fragment = 0) then
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/engine.ml", line 468, characters 16-27:
- 468 | let count = Cstruct.len buf - fst (Ciphersuite.kn_13 (Ciphersuite.privprot13 cipher)) in
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/engine.ml", line 498, characters 47-58:
- 498 | | Server13 _ -> hs.early_data_left > 0l && Cstruct.len hs.hs_fragment = 0
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/engine.ml", line 714, characters 44-47:
- 714 | let ch_part = Cstruct.(sub ch'_raw 0 (len ch'_raw - binders_len)) in
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/engine.ml", line 716, characters 17-28:
- 716 | let blen = Cstruct.len binder in
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -I lib/.tls.objs/byte -I lib/.tls.objs/native -I /home/opam/.opam/4.14/lib/asn1-combinators -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/bigarray-compat -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/cstruct-sexp -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/eqaf -I /home/opam/.opam/4.14/lib/eqaf/bigstring -I /home/opam/.opam/4.14/lib/eqaf/cstruct -I /home/opam/.opam/4.14/lib/fiat-p256 -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/gmap -I /home/opam/.opam/4.14/lib/hacl_x25519 -I /home/opam/.opam/4.14/lib/hex -I /home/opam/.opam/4.14/lib/hkdf -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/mirage-crypto -I /home/opam/.opam/4.14/lib/mirage-crypto-pk -I /home/opam/.opam/4.14/lib/mirage-crypto-rng -I /home/opam/.opam/4.14/lib/parsexp -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/rresult -I /home/opam/.opam/4.14/lib/sexplib -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/x509 -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -open Tls -o lib/.tls.objs/native/tls__Crypto.cmx -c -impl lib/crypto.pp.ml)
- File "lib/crypto.ml", line 80, characters 12-23:
- 80 | let l = Cstruct.len nonce in
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/crypto.ml", line 121, characters 16-19:
- 121 | let len = 1 + len data in
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/crypto.ml", line 133, characters 12-15:
- 133 | let len = len data in
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -I lib/.tls.objs/byte -I lib/.tls.objs/native -I /home/opam/.opam/4.14/lib/asn1-combinators -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/bigarray-compat -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/cstruct-sexp -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/eqaf -I /home/opam/.opam/4.14/lib/eqaf/bigstring -I /home/opam/.opam/4.14/lib/eqaf/cstruct -I /home/opam/.opam/4.14/lib/fiat-p256 -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/gmap -I /home/opam/.opam/4.14/lib/hacl_x25519 -I /home/opam/.opam/4.14/lib/hex -I /home/opam/.opam/4.14/lib/hkdf -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/mirage-crypto -I /home/opam/.opam/4.14/lib/mirage-crypto-pk -I /home/opam/.opam/4.14/lib/mirage-crypto-rng -I /home/opam/.opam/4.14/lib/parsexp -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/rresult -I /home/opam/.opam/4.14/lib/sexplib -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/x509 -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -open Tls -o lib/.tls.objs/native/tls__Handshake_crypto.cmx -c -impl lib/handshake_crypto.pp.ml)
- File "lib/handshake_crypto.ml", line 8, characters 13-24:
- 8 | let size = Cstruct.len secret in
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -I lib/.tls.objs/byte -I lib/.tls.objs/native -I /home/opam/.opam/4.14/lib/asn1-combinators -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/bigarray-compat -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/cstruct-sexp -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/eqaf -I /home/opam/.opam/4.14/lib/eqaf/bigstring -I /home/opam/.opam/4.14/lib/eqaf/cstruct -I /home/opam/.opam/4.14/lib/fiat-p256 -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/gmap -I /home/opam/.opam/4.14/lib/hacl_x25519 -I /home/opam/.opam/4.14/lib/hex -I /home/opam/.opam/4.14/lib/hkdf -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/mirage-crypto -I /home/opam/.opam/4.14/lib/mirage-crypto-pk -I /home/opam/.opam/4.14/lib/mirage-crypto-rng -I /home/opam/.opam/4.14/lib/parsexp -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/rresult -I /home/opam/.opam/4.14/lib/sexplib -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/x509 -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -open Tls -o lib/.tls.objs/native/tls__Handshake_crypto13.cmx -c -impl lib/handshake_crypto13.pp.ml)
- File "lib/handshake_crypto13.ml", line 10, characters 40-51:
- 10 | let padding = Cstruct.create (bytes - Cstruct.len msg) in
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/handshake_crypto13.ml", line 16, characters 35-46:
- 16 | let all_zero = Cstruct.create (Cstruct.len cs) in
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/handshake_crypto13.ml", line 25, characters 7-18:
- 25 | if Cstruct.len share = cdiv bits 8 then
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/handshake_crypto13.ml", line 82, characters 27-38:
- 82 | Cstruct.set_uint8 l 0 (Cstruct.len lbl) ;
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/handshake_crypto13.ml", line 86, characters 27-38:
- 86 | Cstruct.set_uint8 l 0 (Cstruct.len context) ;
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -I lib/.tls.objs/byte -I lib/.tls.objs/native -I /home/opam/.opam/4.14/lib/asn1-combinators -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/bigarray-compat -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/cstruct-sexp -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/eqaf -I /home/opam/.opam/4.14/lib/eqaf/bigstring -I /home/opam/.opam/4.14/lib/eqaf/cstruct -I /home/opam/.opam/4.14/lib/fiat-p256 -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/gmap -I /home/opam/.opam/4.14/lib/hacl_x25519 -I /home/opam/.opam/4.14/lib/hex -I /home/opam/.opam/4.14/lib/hkdf -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/mirage-crypto -I /home/opam/.opam/4.14/lib/mirage-crypto-pk -I /home/opam/.opam/4.14/lib/mirage-crypto-rng -I /home/opam/.opam/4.14/lib/parsexp -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/rresult -I /home/opam/.opam/4.14/lib/sexplib -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/x509 -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -open Tls -o lib/.tls.objs/native/tls__Handshake_client13.cmx -c -impl lib/handshake_client13.pp.ml)
- File "lib/handshake_client13.ml", line 84, characters 46-57:
- 84 | let ch0_hdr = Writer.assemble_message_hash (Cstruct.len ch0_data) in
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -I lib/.tls.objs/byte -I lib/.tls.objs/native -I /home/opam/.opam/4.14/lib/asn1-combinators -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/bigarray-compat -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/cstruct-sexp -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/eqaf -I /home/opam/.opam/4.14/lib/eqaf/bigstring -I /home/opam/.opam/4.14/lib/eqaf/cstruct -I /home/opam/.opam/4.14/lib/fiat-p256 -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/gmap -I /home/opam/.opam/4.14/lib/hacl_x25519 -I /home/opam/.opam/4.14/lib/hex -I /home/opam/.opam/4.14/lib/hkdf -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/mirage-crypto -I /home/opam/.opam/4.14/lib/mirage-crypto-pk -I /home/opam/.opam/4.14/lib/mirage-crypto-rng -I /home/opam/.opam/4.14/lib/parsexp -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/rresult -I /home/opam/.opam/4.14/lib/sexplib -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/x509 -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -open Tls -o lib/.tls.objs/native/tls__Handshake_server13.cmx -c -impl lib/handshake_server13.pp.ml)
- File "lib/handshake_server13.ml", line 106, characters 56-67:
- 106 | let hash_hdr = Writer.assemble_message_hash (Cstruct.len c) in
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/handshake_server13.ml", line 185, characters 58-61:
- 185 | let ch_part = Cstruct.(sub raw 0 (len raw - binders_len)) in
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -I lib/.tls.objs/byte -I lib/.tls.objs/native -I /home/opam/.opam/4.14/lib/asn1-combinators -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/bigarray-compat -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/cstruct-sexp -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/eqaf -I /home/opam/.opam/4.14/lib/eqaf/bigstring -I /home/opam/.opam/4.14/lib/eqaf/cstruct -I /home/opam/.opam/4.14/lib/fiat-p256 -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/gmap -I /home/opam/.opam/4.14/lib/hacl_x25519 -I /home/opam/.opam/4.14/lib/hex -I /home/opam/.opam/4.14/lib/hkdf -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/mirage-crypto -I /home/opam/.opam/4.14/lib/mirage-crypto-pk -I /home/opam/.opam/4.14/lib/mirage-crypto-rng -I /home/opam/.opam/4.14/lib/parsexp -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/rresult -I /home/opam/.opam/4.14/lib/sexplib -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/x509 -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -open Tls -o lib/.tls.objs/native/tls__Handshake_server.cmx -c -impl lib/handshake_server.pp.ml)
- File "lib/handshake_server.ml", line 120, characters 10-21:
- 120 | match Cstruct.len k == 48, Reader.parse_any_version k with
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/handshake_server.ml", line 188, characters 47-58:
- 188 | let rst = Mirage_crypto_rng.generate (32 - Cstruct.len suffix) in
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/handshake_server.ml", line 198, characters 10-21:
- 198 | match Cstruct.len session.session_id with
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -I lib/.tls.objs/byte -I lib/.tls.objs/native -I /home/opam/.opam/4.14/lib/asn1-combinators -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/bigarray-compat -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/cstruct-sexp -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/eqaf -I /home/opam/.opam/4.14/lib/eqaf/bigstring -I /home/opam/.opam/4.14/lib/eqaf/cstruct -I /home/opam/.opam/4.14/lib/fiat-p256 -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/gmap -I /home/opam/.opam/4.14/lib/hacl_x25519 -I /home/opam/.opam/4.14/lib/hex -I /home/opam/.opam/4.14/lib/hkdf -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/mirage-crypto -I /home/opam/.opam/4.14/lib/mirage-crypto-pk -I /home/opam/.opam/4.14/lib/mirage-crypto-rng -I /home/opam/.opam/4.14/lib/parsexp -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/rresult -I /home/opam/.opam/4.14/lib/sexplib -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/x509 -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -open Tls -o lib/.tls.objs/native/tls__Engine.cmx -c -impl lib/engine.pp.ml)
- File "lib/engine.ml", line 141, characters 42-53:
- 141 | let adata = Crypto.adata_1_3 (Cstruct.len buf + Crypto.tag_len c.cipher) in
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/engine.ml", line 150, characters 41-52:
- 150 | Crypto.pseudo_header seq ty ver (Cstruct.len buf)
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/engine.ml", line 194, characters 17-28:
- 194 | let macstart = Cstruct.len decrypted - Mirage_crypto.Hash.digest_size mac in
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/engine.ml", line 199, characters 52-63:
- 199 | let hdr = Crypto.pseudo_header sequence ty ver (Cstruct.len body) in
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/engine.ml", line 238, characters 15-26:
- 238 | if Cstruct.len buf < Crypto.cbc_block c.cipher then
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/engine.ml", line 251, characters 43-54:
- 251 | Crypto.pseudo_header seq ty ver (Cstruct.len buf - Crypto.tag_len c.cipher)
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/engine.ml", line 259, characters 11-22:
- 259 | if Cstruct.len buf < explicit_nonce_len then
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/engine.ml", line 265, characters 45-56:
- 265 | Crypto.pseudo_header seq ty ver (Cstruct.len buf - Crypto.tag_len c.cipher)
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/engine.ml", line 299, characters 23-34:
- 299 | eat (pred (Cstruct.len x))
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/engine.ml", line 301, characters 40-51:
- 301 | let adata = Crypto.adata_1_3 (Cstruct.len buf) in
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/engine.ml", line 344, characters 25-36:
- 344 | | (t1, a) :: xs when Cstruct.len a >= 1 lsl 14 ->
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/engine.ml", line 428, characters 5-16:
- 428 | if Cstruct.len cs = 0 then None else Some cs
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/engine.ml", line 443, characters 53-64:
- 443 | if hs_can_handle_appdata hs || (early_data hs && Cstruct.len hs.hs_fragment = 0) then
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/engine.ml", line 468, characters 16-27:
- 468 | let count = Cstruct.len buf - fst (Ciphersuite.kn_13 (Ciphersuite.privprot13 cipher)) in
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/engine.ml", line 498, characters 47-58:
- 498 | | Server13 _ -> hs.early_data_left > 0l && Cstruct.len hs.hs_fragment = 0
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/engine.ml", line 714, characters 44-47:
- 714 | let ch_part = Cstruct.(sub ch'_raw 0 (len ch'_raw - binders_len)) in
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/engine.ml", line 716, characters 17-28:
- 716 | let blen = Cstruct.len binder in
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -I lwt/.tls_lwt.objs/byte -I lwt/.tls_lwt.objs/native -I /home/opam/.opam/4.14/lib/asn1-combinators -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/bigarray-compat -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/cstruct-sexp -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/duration -I /home/opam/.opam/4.14/lib/eqaf -I /home/opam/.opam/4.14/lib/eqaf/bigstring -I /home/opam/.opam/4.14/lib/eqaf/cstruct -I /home/opam/.opam/4.14/lib/fiat-p256 -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/gmap -I /home/opam/.opam/4.14/lib/hacl_x25519 -I /home/opam/.opam/4.14/lib/hex -I /home/opam/.opam/4.14/lib/hkdf -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/lwt/unix -I /home/opam/.opam/4.14/lib/mirage-crypto -I /home/opam/.opam/4.14/lib/mirage-crypto-pk -I /home/opam/.opam/4.14/lib/mirage-crypto-rng -I /home/opam/.opam/4.14/lib/mirage-crypto-rng/lwt -I /home/opam/.opam/4.14/lib/mirage-crypto-rng/unix -I /home/opam/.opam/4.14/lib/mtime -I /home/opam/.opam/4.14/lib/mtime/clock -I /home/opam/.opam/4.14/lib/ocaml/threads -I /home/opam/.opam/4.14/lib/ocplib-endian -I /home/opam/.opam/4.14/lib/ocplib-endian/bigstring -I /home/opam/.opam/4.14/lib/parsexp -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/ptime/clock -I /home/opam/.opam/4.14/lib/rresult -I /home/opam/.opam/4.14/lib/sexplib -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/x509 -I /home/opam/.opam/4.14/lib/zarith -I lib/.tls.objs/byte -I lib/.tls.objs/native -intf-suffix .ml -no-alias-deps -o lwt/.tls_lwt.objs/native/tls_lwt.cmx -c -impl lwt/tls_lwt.ml)
- File "lwt/tls_lwt.ml", line 30, characters 14-25:
- 30 | | cs when Cstruct.len cs = 0 -> return_unit
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lwt/tls_lwt.ml", line 95, characters 17-20:
- 95 | let rlen = len res in
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lwt/tls_lwt.ml", line 96, characters 22-25:
- 96 | let n = min (len buf) rlen in
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
Processing 2/4: [tls: dune runtest]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "runtest" "-p" "tls" "-j" "31" (CWD=/home/opam/.opam/4.14/.opam-switch/build/tls.0.12.7)
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -g -bin-annot -I tests/.key_derivation.eobjs/byte -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/asn1-combinators -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/bigarray-compat -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/cstruct-sexp -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/eqaf -I /home/opam/.opam/4.14/lib/eqaf/bigstring -I /home/opam/.opam/4.14/lib/eqaf/cstruct -I /home/opam/.opam/4.14/lib/fiat-p256 -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/gmap -I /home/opam/.opam/4.14/lib/hacl_x25519 -I /home/opam/.opam/4.14/lib/hex -I /home/opam/.opam/4.14/lib/hkdf -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/mirage-crypto -I /home/opam/.opam/4.14/lib/mirage-crypto-pk -I /home/opam/.opam/4.14/lib/mirage-crypto-rng -I /home/opam/.opam/4.14/lib/mirage-crypto-rng/unix -I /home/opam/.opam/4.14/lib/parsexp -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/rresult -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/sexplib -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/uutf -I /home/opam/.opam/4.14/lib/x509 -I /home/opam/.opam/4.14/lib/zarith -I lib/.tls.objs/byte -no-alias-deps -o tests/.key_derivation.eobjs/byte/key_derivation.cmo -c -impl tests/key_derivation.ml)
- File "tests/key_derivation.ml", line 425, characters 38-49:
- 425 | Cstruct.BE.set_uint16 adata 3 (17 + Cstruct.len server_payload) ;
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -I tests/.key_derivation.eobjs/byte -I tests/.key_derivation.eobjs/native -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/asn1-combinators -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/bigarray-compat -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/cstruct-sexp -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/eqaf -I /home/opam/.opam/4.14/lib/eqaf/bigstring -I /home/opam/.opam/4.14/lib/eqaf/cstruct -I /home/opam/.opam/4.14/lib/fiat-p256 -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/gmap -I /home/opam/.opam/4.14/lib/hacl_x25519 -I /home/opam/.opam/4.14/lib/hex -I /home/opam/.opam/4.14/lib/hkdf -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/mirage-crypto -I /home/opam/.opam/4.14/lib/mirage-crypto-pk -I /home/opam/.opam/4.14/lib/mirage-crypto-rng -I /home/opam/.opam/4.14/lib/mirage-crypto-rng/unix -I /home/opam/.opam/4.14/lib/parsexp -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/rresult -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/sexplib -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/uutf -I /home/opam/.opam/4.14/lib/x509 -I /home/opam/.opam/4.14/lib/zarith -I lib/.tls.objs/byte -I lib/.tls.objs/native -intf-suffix .ml -no-alias-deps -o tests/.key_derivation.eobjs/native/key_derivation.cmx -c -impl tests/key_derivation.ml)
- File "tests/key_derivation.ml", line 425, characters 38-49:
- 425 | Cstruct.BE.set_uint16 adata 3 (17 + Cstruct.len server_payload) ;
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -g -bin-annot -I tests/.unittestrunner.eobjs/byte -I /home/opam/.opam/4.14/lib/asn1-combinators -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/bigarray-compat -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/cstruct-sexp -I /home/opam/.opam/4.14/lib/cstruct-unix -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/eqaf -I /home/opam/.opam/4.14/lib/eqaf/bigstring -I /home/opam/.opam/4.14/lib/eqaf/cstruct -I /home/opam/.opam/4.14/lib/fiat-p256 -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/gmap -I /home/opam/.opam/4.14/lib/hacl_x25519 -I /home/opam/.opam/4.14/lib/hex -I /home/opam/.opam/4.14/lib/hkdf -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/mirage-crypto -I /home/opam/.opam/4.14/lib/mirage-crypto-pk -I /home/opam/.opam/4.14/lib/mirage-crypto-rng -I /home/opam/.opam/4.14/lib/mirage-crypto-rng/unix -I /home/opam/.opam/4.14/lib/ounit2 -I /home/opam/.opam/4.14/lib/ounit2/advanced -I /home/opam/.opam/4.14/lib/parsexp -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/rresult -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/sexplib -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/x509 -I /home/opam/.opam/4.14/lib/zarith -I lib/.tls.objs/byte -I tests/.testlib.objs/byte -no-alias-deps -o tests/.unittestrunner.eobjs/byte/readertests.cmo -c -impl tests/readertests.ml)
- File "tests/readertests.ml", line 430, characters 38-49:
- 430 | | Ok (_, _, rst) -> assert_equal 0 (Cstruct.len rst)
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "tests/readertests.ml", line 441, characters 9-20:
- 441 | if Cstruct.len rst == 0 then
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "tests/readertests.ml", line 446, characters 10-21:
- 446 | let l = Cstruct.len param in
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "tests/readertests.ml", line 463, characters 10-21:
- 463 | let l = Cstruct.len lastparam in
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "tests/readertests.ml", line 591, characters 10-21:
- 591 | let l = Cstruct.len ds in
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "tests/readertests.ml", line 635, characters 10-21:
- 635 | let l = Cstruct.len ds in
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -g -bin-annot -I tests/.unittestrunner.eobjs/byte -I /home/opam/.opam/4.14/lib/asn1-combinators -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/bigarray-compat -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/cstruct-sexp -I /home/opam/.opam/4.14/lib/cstruct-unix -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/eqaf -I /home/opam/.opam/4.14/lib/eqaf/bigstring -I /home/opam/.opam/4.14/lib/eqaf/cstruct -I /home/opam/.opam/4.14/lib/fiat-p256 -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/gmap -I /home/opam/.opam/4.14/lib/hacl_x25519 -I /home/opam/.opam/4.14/lib/hex -I /home/opam/.opam/4.14/lib/hkdf -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/mirage-crypto -I /home/opam/.opam/4.14/lib/mirage-crypto-pk -I /home/opam/.opam/4.14/lib/mirage-crypto-rng -I /home/opam/.opam/4.14/lib/mirage-crypto-rng/unix -I /home/opam/.opam/4.14/lib/ounit2 -I /home/opam/.opam/4.14/lib/ounit2/advanced -I /home/opam/.opam/4.14/lib/parsexp -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/rresult -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/sexplib -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/x509 -I /home/opam/.opam/4.14/lib/zarith -I lib/.tls.objs/byte -I tests/.testlib.objs/byte -no-alias-deps -o tests/.unittestrunner.eobjs/byte/readerwritertests.cmo -c -impl tests/readerwritertests.ml)
- File "tests/readerwritertests.ml", line 27, characters 20-31:
- 27 | assert_equal 0 (Cstruct.len f) ;
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "tests/readerwritertests.ml", line 34, characters 23-34:
- 34 | assert_equal 0 (Cstruct.len f) ;
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "tests/readerwritertests.ml", line 191, characters 20-31:
- 191 | assert_equal (Cstruct.len rst) 0 ;
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "tests/readerwritertests.ml", line 198, characters 24-35:
- 198 | assert_equal (Cstruct.len rst') 0 ;
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- (cd _build/default/tests && ./key_derivation.exe)
- Testing `Key derivation tests'.
- This run has ID `ILPYU70C'.
-
- [OK] key extraction and derivation 0 initial extract.
- [OK] key extraction and derivation 1 initial derive.
- [OK] key extraction and derivation 2 handshake extract.
- [OK] key extraction and derivation 3 derive c hs.
- [OK] key extraction and derivation 4 derive s hs.
- [OK] key extraction and derivation 5 derive finished.
- [OK] key extraction and derivation 6 derive master.
- [OK] key extraction and derivation 7 extract master.
- [OK] key extraction and derivation 8 derive hanshake keys.
- [OK] key extraction and derivation 9 derive traffic keys.
- [OK] key extraction and derivation 10 application write ...
- [OK] key extraction and derivation 11 application read k...
- [OK] key extraction and derivation 12 hs read keys.
- [OK] key extraction and derivation 13 resumption key.
- [OK] key extraction and derivation 14 payload.
- [OK] key extraction and derivation 15 processed payload.
- [OK] key extraction and derivation 16 self signature.
- [OK] key extraction and derivation 17 wire signature.
- [OK] key extraction and derivation 18 res secret.
- [OK] key extraction and derivation 19 early resumed.
- [OK] key extraction and derivation 20 binder.
- [OK] key extraction and derivation 21 x25519.
-
- Full test results in `~/.opam/4.14/.opam-switch/build/tls.0.12.7/_build/default/tests/_build/_tests/Key derivation tests'.
- Test Successful in 0.013s. 22 tests run.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -I tests/.unittestrunner.eobjs/byte -I tests/.unittestrunner.eobjs/native -I /home/opam/.opam/4.14/lib/asn1-combinators -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/bigarray-compat -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/cstruct-sexp -I /home/opam/.opam/4.14/lib/cstruct-unix -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/eqaf -I /home/opam/.opam/4.14/lib/eqaf/bigstring -I /home/opam/.opam/4.14/lib/eqaf/cstruct -I /home/opam/.opam/4.14/lib/fiat-p256 -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/gmap -I /home/opam/.opam/4.14/lib/hacl_x25519 -I /home/opam/.opam/4.14/lib/hex -I /home/opam/.opam/4.14/lib/hkdf -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/mirage-crypto -I /home/opam/.opam/4.14/lib/mirage-crypto-pk -I /home/opam/.opam/4.14/lib/mirage-crypto-rng -I /home/opam/.opam/4.14/lib/mirage-crypto-rng/unix -I /home/opam/.opam/4.14/lib/ounit2 -I /home/opam/.opam/4.14/lib/ounit2/advanced -I /home/opam/.opam/4.14/lib/parsexp -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/rresult -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/sexplib -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/x509 -I /home/opam/.opam/4.14/lib/zarith -I lib/.tls.objs/byte -I lib/.tls.objs/native -I tests/.testlib.objs/byte -I tests/.testlib.objs/native -intf-suffix .ml -no-alias-deps -o tests/.unittestrunner.eobjs/native/readertests.cmx -c -impl tests/readertests.ml)
- File "tests/readertests.ml", line 430, characters 38-49:
- 430 | | Ok (_, _, rst) -> assert_equal 0 (Cstruct.len rst)
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "tests/readertests.ml", line 441, characters 9-20:
- 441 | if Cstruct.len rst == 0 then
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "tests/readertests.ml", line 446, characters 10-21:
- 446 | let l = Cstruct.len param in
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "tests/readertests.ml", line 463, characters 10-21:
- 463 | let l = Cstruct.len lastparam in
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "tests/readertests.ml", line 591, characters 10-21:
- 591 | let l = Cstruct.len ds in
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "tests/readertests.ml", line 635, characters 10-21:
- 635 | let l = Cstruct.len ds in
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -I tests/.unittestrunner.eobjs/byte -I tests/.unittestrunner.eobjs/native -I /home/opam/.opam/4.14/lib/asn1-combinators -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/bigarray-compat -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/cstruct-sexp -I /home/opam/.opam/4.14/lib/cstruct-unix -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/eqaf -I /home/opam/.opam/4.14/lib/eqaf/bigstring -I /home/opam/.opam/4.14/lib/eqaf/cstruct -I /home/opam/.opam/4.14/lib/fiat-p256 -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/gmap -I /home/opam/.opam/4.14/lib/hacl_x25519 -I /home/opam/.opam/4.14/lib/hex -I /home/opam/.opam/4.14/lib/hkdf -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/mirage-crypto -I /home/opam/.opam/4.14/lib/mirage-crypto-pk -I /home/opam/.opam/4.14/lib/mirage-crypto-rng -I /home/opam/.opam/4.14/lib/mirage-crypto-rng/unix -I /home/opam/.opam/4.14/lib/ounit2 -I /home/opam/.opam/4.14/lib/ounit2/advanced -I /home/opam/.opam/4.14/lib/parsexp -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/rresult -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/sexplib -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/x509 -I /home/opam/.opam/4.14/lib/zarith -I lib/.tls.objs/byte -I lib/.tls.objs/native -I tests/.testlib.objs/byte -I tests/.testlib.objs/native -intf-suffix .ml -no-alias-deps -o tests/.unittestrunner.eobjs/native/readerwritertests.cmx -c -impl tests/readerwritertests.ml)
- File "tests/readerwritertests.ml", line 27, characters 20-31:
- 27 | assert_equal 0 (Cstruct.len f) ;
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "tests/readerwritertests.ml", line 34, characters 23-34:
- 34 | assert_equal 0 (Cstruct.len f) ;
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "tests/readerwritertests.ml", line 191, characters 20-31:
- 191 | assert_equal (Cstruct.len rst) 0 ;
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "tests/readerwritertests.ml", line 198, characters 24-35:
- 198 | assert_equal (Cstruct.len rst') 0 ;
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- (cd _build/default/tests && ./unittestrunner.exe)
- .............................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................
- Ran: 605 tests in: 0.29 seconds.
- OK
-> compiled tls.0.12.7
-> removed tls.0.12.7
-> installed tls.0.12.7
Done.
# To update the current shell environment, run: eval $(opam env)
2025-03-07 15:02.10 ---> saved as "9ee82dedae528adb67a73b756bf346a105da50997ab69f9c031dba57ed9a6256"
Job succeeded
2025-03-07 15:02.20: Job succeeded