This repository was archived by the owner on Nov 19, 2025. It is now read-only.

Description
Hello
The version of kernel is 4.19, and the mptcp I used is 0.95 out of tree. I code setsockopt(fd, SOL_TCP, MPTCP_ENABLED, &enable, sizeof(enable)); as the same as https://multipath-tcp.org/pmwiki.php/Users/ConfigureMPTCP. But there is no define of MPTCP_ENABLED in the head file. I have included `#include <netinet/in.h>
#include <arpa/inet.h>
#include <time.h>
#include <linux/tcp.h>
#include <linux/mptcp.h>
`
Then I check the /usr/include/linux/mptcp.h, MPTCP_PATH_MANAGER and some struct like mptcp_meta_info don't exit too. Did I miss other head files?