Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * IEEE 802.2 User Interface SAPs for Linux, data structures and indicators. |
| 3 | * |
| 4 | * Copyright (c) 2001 by Jay Schulist <jschlst@samba.org> |
| 5 | * |
| 6 | * This program can be redistributed or modified under the terms of the |
| 7 | * GNU General Public License as published by the Free Software Foundation. |
| 8 | * This program is distributed without any warranty or implied warranty |
| 9 | * of merchantability or fitness for a particular purpose. |
| 10 | * |
| 11 | * See the GNU General Public License for more details. |
| 12 | */ |
David Howells | 607ca46 | 2012-10-13 10:46:48 +0100 | [diff] [blame] | 13 | #ifndef __LINUX_LLC_H |
| 14 | #define __LINUX_LLC_H |
Ben Hutchings | bcb949b | 2011-08-24 18:43:55 +0000 | [diff] [blame] | 15 | |
David Howells | 607ca46 | 2012-10-13 10:46:48 +0100 | [diff] [blame] | 16 | #include <uapi/linux/llc.h> |
Ben Hutchings | bcb949b | 2011-08-24 18:43:55 +0000 | [diff] [blame] | 17 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #define LLC_SAP_DYN_START 0xC0 |
| 19 | #define LLC_SAP_DYN_STOP 0xDE |
| 20 | #define LLC_SAP_DYN_TRIES 4 |
| 21 | |
| 22 | #define llc_ui_skb_cb(__skb) ((struct sockaddr_llc *)&((__skb)->cb[0])) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | #endif /* __LINUX_LLC_H */ |