├── .github └── workflows │ ├── clippy.yml │ └── tests.yml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── Makefile ├── README.md ├── proto ├── criu │ ├── LICENSE │ ├── apparmor.proto │ ├── autofs.proto │ ├── binfmt-misc.proto │ ├── bpfmap-data.proto │ ├── bpfmap-file.proto │ ├── cgroup.proto │ ├── core-aarch64.proto │ ├── core-arm.proto │ ├── core-mips.proto │ ├── core-ppc64.proto │ ├── core-s390.proto │ ├── core-x86.proto │ ├── core.proto │ ├── cpuinfo.proto │ ├── creds.proto │ ├── eventfd.proto │ ├── eventpoll.proto │ ├── ext-file.proto │ ├── fdinfo.proto │ ├── fh.proto │ ├── fifo.proto │ ├── file-lock.proto │ ├── fown.proto │ ├── fs.proto │ ├── fsnotify.proto │ ├── ghost-file.proto │ ├── img-streamer.proto │ ├── inventory.proto │ ├── ipc-desc.proto │ ├── ipc-msg.proto │ ├── ipc-sem.proto │ ├── ipc-shm.proto │ ├── ipc-var.proto │ ├── macvlan.proto │ ├── memfd.proto │ ├── mm.proto │ ├── mnt.proto │ ├── netdev.proto │ ├── ns.proto │ ├── opts.proto │ ├── packet-sock.proto │ ├── pagemap.proto │ ├── pidns.proto │ ├── pipe-data.proto │ ├── pipe.proto │ ├── pstree.proto │ ├── regfile.proto │ ├── remap-file-path.proto │ ├── rlimit.proto │ ├── rpc.proto │ ├── sa.proto │ ├── seccomp.proto │ ├── siginfo.proto │ ├── signalfd.proto │ ├── sit.proto │ ├── sk-inet.proto │ ├── sk-netlink.proto │ ├── sk-opts.proto │ ├── sk-packet.proto │ ├── sk-unix.proto │ ├── stats.proto │ ├── sysctl.proto │ ├── tcp-stream.proto │ ├── time.proto │ ├── timens.proto │ ├── timer.proto │ ├── timerfd.proto │ ├── tty.proto │ ├── tun.proto │ ├── userns.proto │ ├── utsns.proto │ └── vma.proto ├── image.proto └── sync_criu_proto_files.sh ├── src ├── capture.rs ├── criu_connection.rs ├── extract.rs ├── image_patcher.rs ├── image_store │ ├── fs.rs │ ├── fs_overlay.rs │ ├── mem.rs │ └── mod.rs ├── lib.rs ├── main.rs ├── mmap_buf.rs ├── ord_by.rs ├── poller.rs ├── unix_pipe.rs └── util.rs └── tests ├── helpers ├── criu.rs ├── mod.rs └── util.rs └── tests.rs /.github/workflows/clippy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/.github/workflows/clippy.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | criu-image-streamer 2 | target 3 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/Cargo.toml -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/README.md -------------------------------------------------------------------------------- /proto/criu/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/proto/criu/LICENSE -------------------------------------------------------------------------------- /proto/criu/apparmor.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/proto/criu/apparmor.proto -------------------------------------------------------------------------------- /proto/criu/autofs.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/proto/criu/autofs.proto -------------------------------------------------------------------------------- /proto/criu/binfmt-misc.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/proto/criu/binfmt-misc.proto -------------------------------------------------------------------------------- /proto/criu/bpfmap-data.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/proto/criu/bpfmap-data.proto -------------------------------------------------------------------------------- /proto/criu/bpfmap-file.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/proto/criu/bpfmap-file.proto -------------------------------------------------------------------------------- /proto/criu/cgroup.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/proto/criu/cgroup.proto -------------------------------------------------------------------------------- /proto/criu/core-aarch64.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/proto/criu/core-aarch64.proto -------------------------------------------------------------------------------- /proto/criu/core-arm.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/proto/criu/core-arm.proto -------------------------------------------------------------------------------- /proto/criu/core-mips.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/proto/criu/core-mips.proto -------------------------------------------------------------------------------- /proto/criu/core-ppc64.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/proto/criu/core-ppc64.proto -------------------------------------------------------------------------------- /proto/criu/core-s390.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/proto/criu/core-s390.proto -------------------------------------------------------------------------------- /proto/criu/core-x86.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/proto/criu/core-x86.proto -------------------------------------------------------------------------------- /proto/criu/core.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/proto/criu/core.proto -------------------------------------------------------------------------------- /proto/criu/cpuinfo.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/proto/criu/cpuinfo.proto -------------------------------------------------------------------------------- /proto/criu/creds.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/proto/criu/creds.proto -------------------------------------------------------------------------------- /proto/criu/eventfd.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/proto/criu/eventfd.proto -------------------------------------------------------------------------------- /proto/criu/eventpoll.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/proto/criu/eventpoll.proto -------------------------------------------------------------------------------- /proto/criu/ext-file.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/proto/criu/ext-file.proto -------------------------------------------------------------------------------- /proto/criu/fdinfo.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/proto/criu/fdinfo.proto -------------------------------------------------------------------------------- /proto/criu/fh.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/proto/criu/fh.proto -------------------------------------------------------------------------------- /proto/criu/fifo.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/proto/criu/fifo.proto -------------------------------------------------------------------------------- /proto/criu/file-lock.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/proto/criu/file-lock.proto -------------------------------------------------------------------------------- /proto/criu/fown.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/proto/criu/fown.proto -------------------------------------------------------------------------------- /proto/criu/fs.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/proto/criu/fs.proto -------------------------------------------------------------------------------- /proto/criu/fsnotify.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/proto/criu/fsnotify.proto -------------------------------------------------------------------------------- /proto/criu/ghost-file.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/proto/criu/ghost-file.proto -------------------------------------------------------------------------------- /proto/criu/img-streamer.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/proto/criu/img-streamer.proto -------------------------------------------------------------------------------- /proto/criu/inventory.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/proto/criu/inventory.proto -------------------------------------------------------------------------------- /proto/criu/ipc-desc.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/proto/criu/ipc-desc.proto -------------------------------------------------------------------------------- /proto/criu/ipc-msg.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/proto/criu/ipc-msg.proto -------------------------------------------------------------------------------- /proto/criu/ipc-sem.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/proto/criu/ipc-sem.proto -------------------------------------------------------------------------------- /proto/criu/ipc-shm.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/proto/criu/ipc-shm.proto -------------------------------------------------------------------------------- /proto/criu/ipc-var.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/proto/criu/ipc-var.proto -------------------------------------------------------------------------------- /proto/criu/macvlan.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/proto/criu/macvlan.proto -------------------------------------------------------------------------------- /proto/criu/memfd.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/proto/criu/memfd.proto -------------------------------------------------------------------------------- /proto/criu/mm.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/proto/criu/mm.proto -------------------------------------------------------------------------------- /proto/criu/mnt.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/proto/criu/mnt.proto -------------------------------------------------------------------------------- /proto/criu/netdev.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/proto/criu/netdev.proto -------------------------------------------------------------------------------- /proto/criu/ns.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/proto/criu/ns.proto -------------------------------------------------------------------------------- /proto/criu/opts.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/proto/criu/opts.proto -------------------------------------------------------------------------------- /proto/criu/packet-sock.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/proto/criu/packet-sock.proto -------------------------------------------------------------------------------- /proto/criu/pagemap.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/proto/criu/pagemap.proto -------------------------------------------------------------------------------- /proto/criu/pidns.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/proto/criu/pidns.proto -------------------------------------------------------------------------------- /proto/criu/pipe-data.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/proto/criu/pipe-data.proto -------------------------------------------------------------------------------- /proto/criu/pipe.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/proto/criu/pipe.proto -------------------------------------------------------------------------------- /proto/criu/pstree.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/proto/criu/pstree.proto -------------------------------------------------------------------------------- /proto/criu/regfile.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/proto/criu/regfile.proto -------------------------------------------------------------------------------- /proto/criu/remap-file-path.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/proto/criu/remap-file-path.proto -------------------------------------------------------------------------------- /proto/criu/rlimit.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/proto/criu/rlimit.proto -------------------------------------------------------------------------------- /proto/criu/rpc.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/proto/criu/rpc.proto -------------------------------------------------------------------------------- /proto/criu/sa.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/proto/criu/sa.proto -------------------------------------------------------------------------------- /proto/criu/seccomp.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/proto/criu/seccomp.proto -------------------------------------------------------------------------------- /proto/criu/siginfo.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/proto/criu/siginfo.proto -------------------------------------------------------------------------------- /proto/criu/signalfd.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/proto/criu/signalfd.proto -------------------------------------------------------------------------------- /proto/criu/sit.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/proto/criu/sit.proto -------------------------------------------------------------------------------- /proto/criu/sk-inet.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/proto/criu/sk-inet.proto -------------------------------------------------------------------------------- /proto/criu/sk-netlink.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/proto/criu/sk-netlink.proto -------------------------------------------------------------------------------- /proto/criu/sk-opts.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/proto/criu/sk-opts.proto -------------------------------------------------------------------------------- /proto/criu/sk-packet.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/proto/criu/sk-packet.proto -------------------------------------------------------------------------------- /proto/criu/sk-unix.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/proto/criu/sk-unix.proto -------------------------------------------------------------------------------- /proto/criu/stats.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/proto/criu/stats.proto -------------------------------------------------------------------------------- /proto/criu/sysctl.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/proto/criu/sysctl.proto -------------------------------------------------------------------------------- /proto/criu/tcp-stream.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/proto/criu/tcp-stream.proto -------------------------------------------------------------------------------- /proto/criu/time.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/proto/criu/time.proto -------------------------------------------------------------------------------- /proto/criu/timens.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/proto/criu/timens.proto -------------------------------------------------------------------------------- /proto/criu/timer.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/proto/criu/timer.proto -------------------------------------------------------------------------------- /proto/criu/timerfd.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/proto/criu/timerfd.proto -------------------------------------------------------------------------------- /proto/criu/tty.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/proto/criu/tty.proto -------------------------------------------------------------------------------- /proto/criu/tun.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/proto/criu/tun.proto -------------------------------------------------------------------------------- /proto/criu/userns.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/proto/criu/userns.proto -------------------------------------------------------------------------------- /proto/criu/utsns.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/proto/criu/utsns.proto -------------------------------------------------------------------------------- /proto/criu/vma.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/proto/criu/vma.proto -------------------------------------------------------------------------------- /proto/image.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/proto/image.proto -------------------------------------------------------------------------------- /proto/sync_criu_proto_files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/proto/sync_criu_proto_files.sh -------------------------------------------------------------------------------- /src/capture.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/src/capture.rs -------------------------------------------------------------------------------- /src/criu_connection.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/src/criu_connection.rs -------------------------------------------------------------------------------- /src/extract.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/src/extract.rs -------------------------------------------------------------------------------- /src/image_patcher.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/src/image_patcher.rs -------------------------------------------------------------------------------- /src/image_store/fs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/src/image_store/fs.rs -------------------------------------------------------------------------------- /src/image_store/fs_overlay.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/src/image_store/fs_overlay.rs -------------------------------------------------------------------------------- /src/image_store/mem.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/src/image_store/mem.rs -------------------------------------------------------------------------------- /src/image_store/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/src/image_store/mod.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/mmap_buf.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/src/mmap_buf.rs -------------------------------------------------------------------------------- /src/ord_by.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/src/ord_by.rs -------------------------------------------------------------------------------- /src/poller.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/src/poller.rs -------------------------------------------------------------------------------- /src/unix_pipe.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/src/unix_pipe.rs -------------------------------------------------------------------------------- /src/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/src/util.rs -------------------------------------------------------------------------------- /tests/helpers/criu.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/tests/helpers/criu.rs -------------------------------------------------------------------------------- /tests/helpers/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/tests/helpers/mod.rs -------------------------------------------------------------------------------- /tests/helpers/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/tests/helpers/util.rs -------------------------------------------------------------------------------- /tests/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-image-streamer/HEAD/tests/tests.rs --------------------------------------------------------------------------------