Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | #ifndef LINUX_ATM_TCP_H |
| 7 | #define LINUX_ATM_TCP_H |
| 8 | |
David Howells | 607ca46 | 2012-10-13 10:46:48 +0100 | [diff] [blame] | 9 | #include <uapi/linux/atm_tcp.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | |
| 11 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | struct atm_tcp_ops { |
| 13 | int (*attach)(struct atm_vcc *vcc,int itf); |
| 14 | int (*create_persistent)(int itf); |
| 15 | int (*remove_persistent)(int itf); |
| 16 | struct module *owner; |
| 17 | }; |
| 18 | |
| 19 | extern struct atm_tcp_ops atm_tcp_ops; |
| 20 | |
| 21 | #endif |