gitextract_bck5e2hc/ ├── .clang-format ├── .dockerignore ├── .github/ │ └── workflows/ │ ├── build-freebsd.yml │ ├── build-macos.yml │ ├── build-ubuntu.yml │ ├── codeql.yml │ ├── release.yml │ └── test.yml ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── Dockerfile/ │ ├── README.md │ ├── almalinux-9.3.Dockerfile │ ├── alpine-3.22.Dockerfile │ ├── arch-base.Dockerfile │ ├── build-deb.Dockerfile │ ├── build-srpm.Dockerfile │ ├── rocky-8.9.Dockerfile │ ├── rocky-9.3.Dockerfile │ ├── ubuntu-20.04.Dockerfile │ ├── ubuntu-22.04.Dockerfile │ └── ubuntu-24.04.Dockerfile ├── Doxyfile ├── LICENSE ├── README.md ├── VERSION ├── conanfile.txt ├── doc/ │ ├── RELEASE.md │ ├── mscp.1.in │ └── mscp.rst ├── include/ │ ├── config.h.in │ └── mscp.h ├── patch/ │ ├── README.md │ ├── libssh-0.10.4.patch │ ├── libssh-0.10.6-2-g6f1b1e76.patch │ ├── libssh-0.10.6.patch │ ├── libssh-0.11.2.patch │ └── libssh-0.9.6.patch ├── rpm/ │ ├── .gitignore │ └── mscp.spec.in ├── scripts/ │ ├── install-build-deps.sh │ └── test-in-container.sh ├── src/ │ ├── atomic.h │ ├── bwlimit.c │ ├── bwlimit.h │ ├── checkpoint.c │ ├── checkpoint.h │ ├── fileops.c │ ├── fileops.h │ ├── main.c │ ├── minmax.h │ ├── mscp.c │ ├── openbsd-compat/ │ │ ├── openbsd-compat.h │ │ └── strlcat.c │ ├── path.c │ ├── path.h │ ├── platform.c │ ├── platform.h │ ├── pool.c │ ├── pool.h │ ├── print.c │ ├── print.h │ ├── ssh.c │ ├── ssh.h │ ├── strerrno.c │ └── strerrno.h └── test/ ├── .gitignore ├── README.md ├── conftest.py ├── test_e2e.py └── util.py