mirror of
https://github.com/checkpoint-restore/criu
synced 2025-08-28 21:07:43 +00:00
Support only basic packet socket functionality -- create and bind. This should be enough to start testing dhclient inside container. Other stuff (filter, mmaps, fanouts, etc.) will come later. Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
11 lines
279 B
C
11 lines
279 B
C
#ifndef __CR_SK_PACKET_H__
|
|
#define __CR_SK_PACKET_H__
|
|
struct cr_fdset;
|
|
struct fd_parms;
|
|
struct cr_options;
|
|
|
|
int dump_one_packet_sk(struct fd_parms *p, int lfd, const struct cr_fdset *fds);
|
|
int collect_packet_sockets(void);
|
|
void show_packetsk(int fd, struct cr_options *);
|
|
#endif
|