/*1* Internal interfaces for ieee 802.15.4 address family.2*3* Copyright 2007, 2008, 2009 Siemens AG4*5* This program is free software; you can redistribute it and/or modify6* it under the terms of the GNU General Public License version 27* as published by the Free Software Foundation.8*9* This program is distributed in the hope that it will be useful,10* but WITHOUT ANY WARRANTY; without even the implied warranty of11* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the12* GNU General Public License for more details.13*14* You should have received a copy of the GNU General Public License along15* with this program; if not, write to the Free Software Foundation, Inc.,16* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.17*18* Written by:19* Sergey Lapin <[email protected]>20* Dmitry Eremin-Solenikov <[email protected]>21*/2223#ifndef AF802154_H24#define AF802154_H2526struct sk_buff;27struct net_devce;28extern struct proto ieee802154_raw_prot;29extern struct proto ieee802154_dgram_prot;30void ieee802154_raw_deliver(struct net_device *dev, struct sk_buff *skb);31int ieee802154_dgram_deliver(struct net_device *dev, struct sk_buff *skb);32struct net_device *ieee802154_get_dev(struct net *net,33struct ieee802154_addr *addr);3435#endif363738