97 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			97 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /****************************************************************************
 | |
|  ****************************************************************************
 | |
|  ***
 | |
|  ***   This header was automatically generated from a Linux kernel header
 | |
|  ***   of the same name, to make information necessary for userspace to
 | |
|  ***   call into the kernel available to libc.  It contains only constants,
 | |
|  ***   structures, and macros generated from the original header, and thus,
 | |
|  ***   contains no copyrightable information.
 | |
|  ***
 | |
|  ***   To edit the content of this header, modify the corresponding
 | |
|  ***   source file (e.g. under external/kernel-headers/original/) then
 | |
|  ***   run bionic/libc/kernel/tools/update_all.py
 | |
|  ***
 | |
|  ***   Any manual change here will be lost the next time this script will
 | |
|  ***   be run. You've been warned!
 | |
|  ***
 | |
|  ****************************************************************************
 | |
|  ****************************************************************************/
 | |
| #ifndef _UAPI_FRAD_H_
 | |
| #define _UAPI_FRAD_H_
 | |
| #include <linux/if.h>
 | |
| struct dlci_add
 | |
| /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
 | |
| {
 | |
|  char devname[IFNAMSIZ];
 | |
|  short dlci;
 | |
| };
 | |
| /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
 | |
| #define DLCI_GET_CONF (SIOCDEVPRIVATE + 2)
 | |
| #define DLCI_SET_CONF (SIOCDEVPRIVATE + 3)
 | |
| struct dlci_conf {
 | |
|  short flags;
 | |
| /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
 | |
|  short CIR_fwd;
 | |
|  short Bc_fwd;
 | |
|  short Be_fwd;
 | |
|  short CIR_bwd;
 | |
| /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
 | |
|  short Bc_bwd;
 | |
|  short Be_bwd;
 | |
|  short Tc_fwd;
 | |
|  short Tc_bwd;
 | |
| /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
 | |
|  short Tf_max;
 | |
|  short Tb_max;
 | |
| };
 | |
| #define DLCI_GET_SLAVE (SIOCDEVPRIVATE + 4)
 | |
| /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
 | |
| #define DLCI_IGNORE_CIR_OUT 0x0001
 | |
| #define DLCI_ACCOUNT_CIR_IN 0x0002
 | |
| #define DLCI_BUFFER_IF 0x0008
 | |
| #define DLCI_VALID_FLAGS 0x000B
 | |
| /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
 | |
| #define FRAD_GET_CONF (SIOCDEVPRIVATE)
 | |
| #define FRAD_SET_CONF (SIOCDEVPRIVATE + 1)
 | |
| #define FRAD_LAST_IOCTL FRAD_SET_CONF
 | |
| struct frad_conf
 | |
| /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
 | |
| {
 | |
|  short station;
 | |
|  short flags;
 | |
|  short kbaud;
 | |
| /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
 | |
|  short clocking;
 | |
|  short mtu;
 | |
|  short T391;
 | |
|  short T392;
 | |
| /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
 | |
|  short N391;
 | |
|  short N392;
 | |
|  short N393;
 | |
|  short CIR_fwd;
 | |
| /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
 | |
|  short Bc_fwd;
 | |
|  short Be_fwd;
 | |
|  short CIR_bwd;
 | |
|  short Bc_bwd;
 | |
| /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
 | |
|  short Be_bwd;
 | |
| };
 | |
| #define FRAD_STATION_CPE 0x0000
 | |
| #define FRAD_STATION_NODE 0x0001
 | |
| /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
 | |
| #define FRAD_TX_IGNORE_CIR 0x0001
 | |
| #define FRAD_RX_ACCOUNT_CIR 0x0002
 | |
| #define FRAD_DROP_ABORTED 0x0004
 | |
| #define FRAD_BUFFERIF 0x0008
 | |
| /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
 | |
| #define FRAD_STATS 0x0010
 | |
| #define FRAD_MCI 0x0100
 | |
| #define FRAD_AUTODLCI 0x8000
 | |
| #define FRAD_VALID_FLAGS 0x811F
 | |
| /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
 | |
| #define FRAD_CLOCK_INT 0x0001
 | |
| #define FRAD_CLOCK_EXT 0x0000
 | |
| #endif
 | 
