├── .github └── workflows │ ├── lint.yml │ └── test.yml ├── .gitignore ├── Cargo.toml ├── LICENSE ├── Makefile ├── README.md ├── completions ├── README.md ├── bash │ └── criu-coordinator ├── fish │ └── criu-coordinator.fish └── zsh │ └── _criu-coordinator ├── example-config └── criu-coordinator.json ├── 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 ├── src ├── cli.rs ├── client.rs ├── constants.rs ├── lib.rs ├── logger.rs ├── main.rs ├── pipeline.rs ├── pipeline │ ├── criu.rs │ ├── monitor.rs │ ├── ord_by.rs │ ├── protobuf.rs │ ├── streamer.rs │ └── unix_pipe.rs ├── server.rs └── server │ └── client_status.rs └── tests ├── Makefile ├── common.rs ├── coordination_logic.rs ├── e2e_criu.rs ├── kubescr-add-dependencies.py ├── loop.c ├── tcp-client.c └── tcp-server.c /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/README.md -------------------------------------------------------------------------------- /completions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/completions/README.md -------------------------------------------------------------------------------- /completions/bash/criu-coordinator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/completions/bash/criu-coordinator -------------------------------------------------------------------------------- /completions/fish/criu-coordinator.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/completions/fish/criu-coordinator.fish -------------------------------------------------------------------------------- /completions/zsh/_criu-coordinator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/completions/zsh/_criu-coordinator -------------------------------------------------------------------------------- /example-config/criu-coordinator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/example-config/criu-coordinator.json -------------------------------------------------------------------------------- /proto/criu/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/proto/criu/LICENSE -------------------------------------------------------------------------------- /proto/criu/apparmor.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/proto/criu/apparmor.proto -------------------------------------------------------------------------------- /proto/criu/autofs.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/proto/criu/autofs.proto -------------------------------------------------------------------------------- /proto/criu/binfmt-misc.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/proto/criu/binfmt-misc.proto -------------------------------------------------------------------------------- /proto/criu/bpfmap-data.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/proto/criu/bpfmap-data.proto -------------------------------------------------------------------------------- /proto/criu/bpfmap-file.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/proto/criu/bpfmap-file.proto -------------------------------------------------------------------------------- /proto/criu/cgroup.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/proto/criu/cgroup.proto -------------------------------------------------------------------------------- /proto/criu/core-aarch64.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/proto/criu/core-aarch64.proto -------------------------------------------------------------------------------- /proto/criu/core-arm.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/proto/criu/core-arm.proto -------------------------------------------------------------------------------- /proto/criu/core-mips.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/proto/criu/core-mips.proto -------------------------------------------------------------------------------- /proto/criu/core-ppc64.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/proto/criu/core-ppc64.proto -------------------------------------------------------------------------------- /proto/criu/core-s390.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/proto/criu/core-s390.proto -------------------------------------------------------------------------------- /proto/criu/core-x86.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/proto/criu/core-x86.proto -------------------------------------------------------------------------------- /proto/criu/core.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/proto/criu/core.proto -------------------------------------------------------------------------------- /proto/criu/cpuinfo.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/proto/criu/cpuinfo.proto -------------------------------------------------------------------------------- /proto/criu/creds.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/proto/criu/creds.proto -------------------------------------------------------------------------------- /proto/criu/eventfd.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/proto/criu/eventfd.proto -------------------------------------------------------------------------------- /proto/criu/eventpoll.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/proto/criu/eventpoll.proto -------------------------------------------------------------------------------- /proto/criu/ext-file.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/proto/criu/ext-file.proto -------------------------------------------------------------------------------- /proto/criu/fdinfo.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/proto/criu/fdinfo.proto -------------------------------------------------------------------------------- /proto/criu/fh.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/proto/criu/fh.proto -------------------------------------------------------------------------------- /proto/criu/fifo.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/proto/criu/fifo.proto -------------------------------------------------------------------------------- /proto/criu/file-lock.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/proto/criu/file-lock.proto -------------------------------------------------------------------------------- /proto/criu/fown.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/proto/criu/fown.proto -------------------------------------------------------------------------------- /proto/criu/fs.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/proto/criu/fs.proto -------------------------------------------------------------------------------- /proto/criu/fsnotify.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/proto/criu/fsnotify.proto -------------------------------------------------------------------------------- /proto/criu/ghost-file.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/proto/criu/ghost-file.proto -------------------------------------------------------------------------------- /proto/criu/img-streamer.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/proto/criu/img-streamer.proto -------------------------------------------------------------------------------- /proto/criu/inventory.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/proto/criu/inventory.proto -------------------------------------------------------------------------------- /proto/criu/ipc-desc.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/proto/criu/ipc-desc.proto -------------------------------------------------------------------------------- /proto/criu/ipc-msg.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/proto/criu/ipc-msg.proto -------------------------------------------------------------------------------- /proto/criu/ipc-sem.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/proto/criu/ipc-sem.proto -------------------------------------------------------------------------------- /proto/criu/ipc-shm.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/proto/criu/ipc-shm.proto -------------------------------------------------------------------------------- /proto/criu/ipc-var.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/proto/criu/ipc-var.proto -------------------------------------------------------------------------------- /proto/criu/macvlan.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/proto/criu/macvlan.proto -------------------------------------------------------------------------------- /proto/criu/memfd.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/proto/criu/memfd.proto -------------------------------------------------------------------------------- /proto/criu/mm.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/proto/criu/mm.proto -------------------------------------------------------------------------------- /proto/criu/mnt.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/proto/criu/mnt.proto -------------------------------------------------------------------------------- /proto/criu/netdev.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/proto/criu/netdev.proto -------------------------------------------------------------------------------- /proto/criu/ns.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/proto/criu/ns.proto -------------------------------------------------------------------------------- /proto/criu/opts.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/proto/criu/opts.proto -------------------------------------------------------------------------------- /proto/criu/packet-sock.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/proto/criu/packet-sock.proto -------------------------------------------------------------------------------- /proto/criu/pagemap.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/proto/criu/pagemap.proto -------------------------------------------------------------------------------- /proto/criu/pidns.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/proto/criu/pidns.proto -------------------------------------------------------------------------------- /proto/criu/pipe-data.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/proto/criu/pipe-data.proto -------------------------------------------------------------------------------- /proto/criu/pipe.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/proto/criu/pipe.proto -------------------------------------------------------------------------------- /proto/criu/pstree.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/proto/criu/pstree.proto -------------------------------------------------------------------------------- /proto/criu/regfile.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/proto/criu/regfile.proto -------------------------------------------------------------------------------- /proto/criu/remap-file-path.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/proto/criu/remap-file-path.proto -------------------------------------------------------------------------------- /proto/criu/rlimit.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/proto/criu/rlimit.proto -------------------------------------------------------------------------------- /proto/criu/rpc.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/proto/criu/rpc.proto -------------------------------------------------------------------------------- /proto/criu/sa.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/proto/criu/sa.proto -------------------------------------------------------------------------------- /proto/criu/seccomp.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/proto/criu/seccomp.proto -------------------------------------------------------------------------------- /proto/criu/siginfo.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/proto/criu/siginfo.proto -------------------------------------------------------------------------------- /proto/criu/signalfd.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/proto/criu/signalfd.proto -------------------------------------------------------------------------------- /proto/criu/sit.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/proto/criu/sit.proto -------------------------------------------------------------------------------- /proto/criu/sk-inet.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/proto/criu/sk-inet.proto -------------------------------------------------------------------------------- /proto/criu/sk-netlink.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/proto/criu/sk-netlink.proto -------------------------------------------------------------------------------- /proto/criu/sk-opts.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/proto/criu/sk-opts.proto -------------------------------------------------------------------------------- /proto/criu/sk-packet.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/proto/criu/sk-packet.proto -------------------------------------------------------------------------------- /proto/criu/sk-unix.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/proto/criu/sk-unix.proto -------------------------------------------------------------------------------- /proto/criu/stats.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/proto/criu/stats.proto -------------------------------------------------------------------------------- /proto/criu/sysctl.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/proto/criu/sysctl.proto -------------------------------------------------------------------------------- /proto/criu/tcp-stream.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/proto/criu/tcp-stream.proto -------------------------------------------------------------------------------- /proto/criu/time.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/proto/criu/time.proto -------------------------------------------------------------------------------- /proto/criu/timens.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/proto/criu/timens.proto -------------------------------------------------------------------------------- /proto/criu/timer.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/proto/criu/timer.proto -------------------------------------------------------------------------------- /proto/criu/timerfd.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/proto/criu/timerfd.proto -------------------------------------------------------------------------------- /proto/criu/tty.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/proto/criu/tty.proto -------------------------------------------------------------------------------- /proto/criu/tun.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/proto/criu/tun.proto -------------------------------------------------------------------------------- /proto/criu/userns.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/proto/criu/userns.proto -------------------------------------------------------------------------------- /proto/criu/utsns.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/proto/criu/utsns.proto -------------------------------------------------------------------------------- /proto/criu/vma.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/proto/criu/vma.proto -------------------------------------------------------------------------------- /proto/image.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/proto/image.proto -------------------------------------------------------------------------------- /src/cli.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/src/cli.rs -------------------------------------------------------------------------------- /src/client.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/src/client.rs -------------------------------------------------------------------------------- /src/constants.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/src/constants.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/logger.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/src/logger.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/pipeline.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/src/pipeline.rs -------------------------------------------------------------------------------- /src/pipeline/criu.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/src/pipeline/criu.rs -------------------------------------------------------------------------------- /src/pipeline/monitor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/src/pipeline/monitor.rs -------------------------------------------------------------------------------- /src/pipeline/ord_by.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/src/pipeline/ord_by.rs -------------------------------------------------------------------------------- /src/pipeline/protobuf.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/src/pipeline/protobuf.rs -------------------------------------------------------------------------------- /src/pipeline/streamer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/src/pipeline/streamer.rs -------------------------------------------------------------------------------- /src/pipeline/unix_pipe.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/src/pipeline/unix_pipe.rs -------------------------------------------------------------------------------- /src/server.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/src/server.rs -------------------------------------------------------------------------------- /src/server/client_status.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/src/server/client_status.rs -------------------------------------------------------------------------------- /tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/tests/Makefile -------------------------------------------------------------------------------- /tests/common.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/tests/common.rs -------------------------------------------------------------------------------- /tests/coordination_logic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/tests/coordination_logic.rs -------------------------------------------------------------------------------- /tests/e2e_criu.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/tests/e2e_criu.rs -------------------------------------------------------------------------------- /tests/kubescr-add-dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/tests/kubescr-add-dependencies.py -------------------------------------------------------------------------------- /tests/loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/tests/loop.c -------------------------------------------------------------------------------- /tests/tcp-client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/tests/tcp-client.c -------------------------------------------------------------------------------- /tests/tcp-server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkpoint-restore/criu-coordinator/HEAD/tests/tcp-server.c --------------------------------------------------------------------------------