Blame view

net/batman-adv/send.h 1.28 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
   *
   * Marek Lindner, Simon Wunderlich
   *
   * 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_SEND_H_
  #define _NET_BATMAN_ADV_SEND_H_
747e4221a   Sven Eckelmann   batman-adv: Add c...
24
25
  int send_skb_packet(struct sk_buff *skb, struct hard_iface *hard_iface,
  		    const uint8_t *dst_addr);
b9dacc521   Marek Lindner   batman-adv: agglo...
26
  void schedule_bat_ogm(struct hard_iface *hard_iface);
747e4221a   Sven Eckelmann   batman-adv: Add c...
27
  int add_bcast_packet_to_list(struct bat_priv *bat_priv,
8698529d2   Antonio Quartulli   batman-adv: add_b...
28
  			     const struct sk_buff *skb, unsigned long delay);
b9dacc521   Marek Lindner   batman-adv: agglo...
29
  void send_outstanding_bat_ogm_packet(struct work_struct *work);
c6c8fea29   Sven Eckelmann   net: Add batman-a...
30
  void purge_outstanding_packets(struct bat_priv *bat_priv,
747e4221a   Sven Eckelmann   batman-adv: Add c...
31
  			       const struct hard_iface *hard_iface);
c6c8fea29   Sven Eckelmann   net: Add batman-a...
32
33
  
  #endif /* _NET_BATMAN_ADV_SEND_H_ */