Blame view

net/batman-adv/soft-interface.h 1.31 KB
c6c8fea29   Sven Eckelmann   net: Add batman-a...
1
  /*
64afe3539   Sven Eckelmann   batman-adv: Updat...
2
   * Copyright (C) 2007-2011 B.A.T.M.A.N. contributors:
c6c8fea29   Sven Eckelmann   net: Add batman-a...
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
   *
   * Marek Lindner
   *
   * This program is free software; you can redistribute it and/or
   * modify it under the terms of version 2 of the GNU General Public
   * License as published by the Free Software Foundation.
   *
   * This program is distributed in the hope that it will be useful, but
   * WITHOUT ANY WARRANTY; without even the implied warranty of
   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
   * General Public License for more details.
   *
   * You should have received a copy of the GNU General Public License
   * along with this program; if not, write to the Free Software
   * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
   * 02110-1301, USA
   *
   */
  
  #ifndef _NET_BATMAN_ADV_SOFT_INTERFACE_H_
  #define _NET_BATMAN_ADV_SOFT_INTERFACE_H_
  
  int my_skb_head_push(struct sk_buff *skb, unsigned int len);
  int softif_neigh_seq_print_text(struct seq_file *seq, void *offset);
  void softif_neigh_purge(struct bat_priv *bat_priv);
c6c8fea29   Sven Eckelmann   net: Add batman-a...
28
  void interface_rx(struct net_device *soft_iface,
e6c10f433   Marek Lindner   batman-adv: renam...
29
  		  struct sk_buff *skb, struct hard_iface *recv_if,
c6c8fea29   Sven Eckelmann   net: Add batman-a...
30
  		  int hdr_size);
747e4221a   Sven Eckelmann   batman-adv: Add c...
31
  struct net_device *softif_create(const char *name);
c6c8fea29   Sven Eckelmann   net: Add batman-a...
32
  void softif_destroy(struct net_device *soft_iface);
747e4221a   Sven Eckelmann   batman-adv: Add c...
33
  int softif_is_valid(const struct net_device *net_dev);
c6c8fea29   Sven Eckelmann   net: Add batman-a...
34
35
  
  #endif /* _NET_BATMAN_ADV_SOFT_INTERFACE_H_ */