Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph...
[linux-2.6.git] / include / linux / atm_tcp.h
blobdb6b65fc0aec7fa2bd5526015aedb29c6f5c7f00
1 /* atm_tcp.h - Driver-specific declarations of the ATMTCP driver (for use by
2 driver-specific utilities) */
4 /* Written 1997-2000 by Werner Almesberger, EPFL LRC/ICA */
6 #ifndef LINUX_ATM_TCP_H
7 #define LINUX_ATM_TCP_H
9 #include <uapi/linux/atm_tcp.h>
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;
19 extern struct atm_tcp_ops atm_tcp_ops;
21 #endif