Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
atm_tcp.h
Go to the documentation of this file.
1 /* atm_tcp.h - Driver-specific declarations of the ATMTCP driver (for use by
2  driver-specific utilities) */
3 
4 /* Written 1997-2000 by Werner Almesberger, EPFL LRC/ICA */
5 
6 #ifndef LINUX_ATM_TCP_H
7 #define LINUX_ATM_TCP_H
8 
9 #include <uapi/linux/atm_tcp.h>
10 
11 
12 struct atm_tcp_ops {
13  int (*attach)(struct atm_vcc *vcc,int itf);
16  struct module *owner;
17 };
18 
19 extern struct atm_tcp_ops atm_tcp_ops;
20 
21 #endif