atm_tcp.h 472 B

12345678910111213141516171819202122
  1. /* atm_tcp.h - Driver-specific declarations of the ATMTCP driver (for use by
  2. driver-specific utilities) */
  3. /* Written 1997-2000 by Werner Almesberger, EPFL LRC/ICA */
  4. #ifndef LINUX_ATM_TCP_H
  5. #define LINUX_ATM_TCP_H
  6. #include <uapi/linux/atm_tcp.h>
  7. struct atm_tcp_ops {
  8. int (*attach)(struct atm_vcc *vcc,int itf);
  9. int (*create_persistent)(int itf);
  10. int (*remove_persistent)(int itf);
  11. struct module *owner;
  12. };
  13. extern struct atm_tcp_ops atm_tcp_ops;
  14. #endif