atm_tcp.h 511 B

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