mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-07-19 01:26:22 +00:00
We really have a mess of extern/non-extern declaration of functions in our headers. Always use extern for unification purpose. Signed-off-by: Cyrill Gorcunov <gorcunov@openvz.org> Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
16 lines
406 B
C
16 lines
406 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_fdset *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__ */
|