Back to home page

OSCL-LXR

 
 

    


0001 /*
0002  * IEEE 802.2 User Interface SAPs for Linux, data structures and indicators.
0003  *
0004  * Copyright (c) 2001 by Jay Schulist <jschlst@samba.org>
0005  *
0006  * This program can be redistributed or modified under the terms of the
0007  * GNU General Public License as published by the Free Software Foundation.
0008  * This program is distributed without any warranty or implied warranty
0009  * of merchantability or fitness for a particular purpose.
0010  *
0011  * See the GNU General Public License for more details.
0012  */
0013 #ifndef __LINUX_LLC_H
0014 #define __LINUX_LLC_H
0015 
0016 #include <uapi/linux/llc.h>
0017 
0018 #define LLC_SAP_DYN_START   0xC0
0019 #define LLC_SAP_DYN_STOP    0xDE
0020 #define LLC_SAP_DYN_TRIES   4
0021 
0022 #define llc_ui_skb_cb(__skb) ((struct sockaddr_llc *)&((__skb)->cb[0]))
0023 #endif /* __LINUX_LLC_H */