mirror of
https://github.com/checkpoint-restore/criu
synced 2025-08-22 18:07:57 +00:00
14 lines
177 B
Makefile
14 lines
177 B
Makefile
|
define TCP_REPAIR_TEST
|
||
|
|
||
|
#include <netinet/tcp.h>
|
||
|
|
||
|
int main(void)
|
||
|
{
|
||
|
struct tcp_repair_opt opts;
|
||
|
opts.opt_code = TCP_NO_QUEUE;
|
||
|
opts.opt_val = 0;
|
||
|
|
||
|
return opts.opt_val;
|
||
|
}
|
||
|
endef
|