mptcp: cleanup include section.
David reported ipmptcp breaks hard the build when updating the relevant kernel headers. We should be more careful in the header section, explicitly including all the required dependencies respecting the usual order between systems and local headers. Stephen Hemminger <stephen@networkplumber.org> Signed-off-by: Paolo Abeni <pabeni@redhat.com> Signed-off-by: David Ahern <dsahern@kernel.org>
This commit is contained in:
parent
8cd517a805
commit
a31e7b7967
12
ip/ipmptcp.c
12
ip/ipmptcp.c
|
|
@ -1,17 +1,23 @@
|
|||
// SPDX-License-Identifier: GPL-2.0
|
||||
|
||||
#include <arpa/inet.h>
|
||||
#include <netinet/in.h>
|
||||
#include <stdbool.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <rt_names.h>
|
||||
#include <errno.h>
|
||||
|
||||
#include <linux/genetlink.h>
|
||||
#include <linux/netlink.h>
|
||||
#include <linux/rtnetlink.h>
|
||||
#include <linux/mptcp.h>
|
||||
|
||||
#include "utils.h"
|
||||
#include "ip_common.h"
|
||||
#include "libgenl.h"
|
||||
#include "json_print.h"
|
||||
#include "libgenl.h"
|
||||
#include "libnetlink.h"
|
||||
#include "ll_map.h"
|
||||
|
||||
static void usage(void)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue