include upstream ip1000a driver version 2.09f
[linux-2.4.git] / net / atm / common.h
1 /* net/atm/common.h - ATM sockets (common part for PVC and SVC) */
2  
3 /* Written 1995-2000 by Werner Almesberger, EPFL LRC/ICA */
4
5
6 #ifndef NET_ATM_COMMON_H
7 #define NET_ATM_COMMON_H
8
9 #include <linux/net.h>
10 #include <linux/poll.h> /* for poll_table */
11
12
13 int vcc_create(struct socket *sock, int protocol, int family);
14 int vcc_release(struct socket *sock);
15 int vcc_connect(struct socket *sock, int itf, short vpi, int vci);
16 int vcc_recvmsg(struct socket *sock, struct msghdr *msg,
17                 int size, int flags, struct scm_cookie *scm);
18 int vcc_sendmsg(struct socket *sock, struct msghdr *m, int total_len,
19                 struct scm_cookie *scm);
20 unsigned int atm_poll(struct file *file,struct socket *sock,poll_table *wait);
21 int vcc_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg);
22 int vcc_setsockopt(struct socket *sock, int level, int optname, char *optval,
23                    int optlen);
24 int vcc_getsockopt(struct socket *sock, int level, int optname, char *optval,
25                    int *optlen);
26
27 void atm_shutdown_dev(struct atm_dev *dev);
28
29 void pppoatm_ioctl_set(int (*hook)(struct atm_vcc *, unsigned int, unsigned long));
30 void br2684_ioctl_set(int (*hook)(struct atm_vcc *, unsigned int, unsigned long));
31
32 int atmpvc_init(void);
33 void atmpvc_exit(void);
34 int atmsvc_init(void);
35 void atmsvc_exit(void);
36 int atm_proc_init(void);
37 void atm_proc_exit(void);
38
39 /* SVC */
40
41 void svc_callback(struct atm_vcc *vcc);
42 int svc_change_qos(struct atm_vcc *vcc,struct atm_qos *qos);
43
44 /* p2mp */
45
46 int create_leaf(struct socket *leaf,struct socket *session);
47
48 #endif