mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-07-18 00:58:31 +00:00
Since we're going to switch from int-fd-s to class-image soon the fdset name will not fit into the new terminology. This patch is sed -e 's/fdset/imgset/g' -i * sed -e 's/imgset_fd/img_from_set/g' -i * git mv include/fdset.h include/imgset.h Signed-off-by: Pavel Emelyanov <xemul@parallels.com> Acked-by: Cyrill Gorcunov <gorcunov@openvz.org>
16 lines
407 B
C
16 lines
407 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;
|
|
extern int dump_tun_link(NetDeviceEntry *nde, struct cr_imgset *fds);
|
|
extern int restore_one_tun(NetDeviceEntry *nde, int nlsk);
|
|
extern struct collect_image_info tunfile_cinfo;
|
|
extern int check_tun(void);
|
|
|
|
#endif /* __CR_TUN_H__ */
|