mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-07-22 09:39:13 +00:00
If an image isn't specified, crtool shows content of all images. Now crtools aborts in this case due to BUG_ON(1) in show methods for raw images. I sugget to skip such images. Signed-off-by: Andrey Vagin <avagin@openvz.org> Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
9 lines
211 B
C
9 lines
211 B
C
#ifndef __CR_NET_H__
|
|
#define __CR_NET_H__
|
|
struct cr_options;
|
|
void show_netdevices(int fd, struct cr_options *);
|
|
|
|
struct cr_fdset;
|
|
int dump_net_ns(int pid, struct cr_fdset *);
|
|
int prepare_net_ns(int pid);
|
|
#endif
|