Loading...
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
5/* Written 1997-2000 by Werner Almesberger, EPFL LRC/ICA */
6
7#ifndef LINUX_ATM_TCP_H
8#define LINUX_ATM_TCP_H
9
10#include <uapi/linux/atm_tcp.h>
11
12
13struct atm_tcp_ops {
14 int (*attach)(struct atm_vcc *vcc,int itf);
15 int (*create_persistent)(int itf);
16 int (*remove_persistent)(int itf);
17 struct module *owner;
18};
19
20extern struct atm_tcp_ops atm_tcp_ops;
21
22#endif
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
6#ifndef LINUX_ATM_TCP_H
7#define LINUX_ATM_TCP_H
8
9#include <uapi/linux/atm_tcp.h>
10
11
12struct 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
19extern struct atm_tcp_ops atm_tcp_ops;
20
21#endif