/* atm_tcp.h - Driver-specific declarations of the ATMTCP driver (for use by driver-specific utilities) *//* Written 1997-2000 by Werner Almesberger, EPFL LRC/ICA */#ifndef LINUX_ATM_TCP_H#define LINUX_ATM_TCP_H#include <uapi/linux/atm_tcp.h>structatm_tcp_ops{int(*attach)(structatm_vcc*vcc,intitf);int(*create_persistent)(intitf);int(*remove_persistent)(intitf);structmodule*owner;};externstructatm_tcp_opsatm_tcp_ops;#endif