mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-07-18 09:05:10 +00:00
14 lines
364 B
C
14 lines
364 B
C
#ifndef __CR_TUN_H__
|
|
#define __CR_TUN_H__
|
|
#ifndef TUN_MINOR
|
|
#define TUN_MINOR 200
|
|
#endif
|
|
|
|
#include "protobuf/netdev.pb-c.h"
|
|
|
|
extern const struct fdtype_ops tunfile_dump_ops;
|
|
int dump_tun_link(NetDeviceEntry *nde, struct cr_fdset *fds);
|
|
int restore_one_tun(NetDeviceEntry *nde, int nlsk);
|
|
extern struct collect_image_info tunfile_cinfo;
|
|
int check_tun(void);
|
|
#endif
|