netlink.c (a943e8bc058977663ba1e42389d4f5643cf2ae9e) netlink.c (fec149f5d3234c037ec761d1db4cc8c0550e9964)
1// SPDX-License-Identifier: GPL-2.0
2/* Copyright (C) 2016-2017 B.A.T.M.A.N. contributors:
3 *
4 * Matthias Schiffer
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of version 2 of the GNU General Public
8 * License as published by the Free Software Foundation.

--- 26 unchanged lines hidden (view full) ---

35#include <linux/rculist.h>
36#include <linux/rcupdate.h>
37#include <linux/skbuff.h>
38#include <linux/stddef.h>
39#include <linux/types.h>
40#include <net/genetlink.h>
41#include <net/netlink.h>
42#include <net/sock.h>
1// SPDX-License-Identifier: GPL-2.0
2/* Copyright (C) 2016-2017 B.A.T.M.A.N. contributors:
3 *
4 * Matthias Schiffer
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of version 2 of the GNU General Public
8 * License as published by the Free Software Foundation.

--- 26 unchanged lines hidden (view full) ---

35#include <linux/rculist.h>
36#include <linux/rcupdate.h>
37#include <linux/skbuff.h>
38#include <linux/stddef.h>
39#include <linux/types.h>
40#include <net/genetlink.h>
41#include <net/netlink.h>
42#include <net/sock.h>
43#include <uapi/linux/batadv_packet.h>
43#include <uapi/linux/batman_adv.h>
44
45#include "bat_algo.h"
46#include "bridge_loop_avoidance.h"
47#include "gateway_client.h"
48#include "hard-interface.h"
49#include "originator.h"
44#include <uapi/linux/batman_adv.h>
45
46#include "bat_algo.h"
47#include "bridge_loop_avoidance.h"
48#include "gateway_client.h"
49#include "hard-interface.h"
50#include "originator.h"
50#include "packet.h"
51#include "soft-interface.h"
52#include "tp_meter.h"
53#include "translation-table.h"
54
55struct genl_family batadv_netlink_family;
56
57/* multicast groups */
58enum batadv_netlink_multicast_groups {

--- 583 unchanged lines hidden ---
51#include "soft-interface.h"
52#include "tp_meter.h"
53#include "translation-table.h"
54
55struct genl_family batadv_netlink_family;
56
57/* multicast groups */
58enum batadv_netlink_multicast_groups {

--- 583 unchanged lines hidden ---