common.h 1.48 KB
Newer Older
Linus Torvalds's avatar
Linus Torvalds committed
1 2 3 4 5 6 7 8 9 10 11 12
/* net/atm/common.h - ATM sockets (common part for PVC and SVC) */
 
/* Written 1995-2000 by Werner Almesberger, EPFL LRC/ICA */


#ifndef NET_ATM_COMMON_H
#define NET_ATM_COMMON_H

#include <linux/net.h>
#include <linux/poll.h> /* for poll_table */


13 14
int vcc_create(struct socket *sock, int protocol, int family);
int vcc_release(struct socket *sock);
15 16 17 18
int vcc_connect(struct socket *sock, int itf, short vpi, int vci);
int vcc_recvmsg(struct kiocb *iocb, struct socket *sock, struct msghdr *msg,
		int size, int flags);
int vcc_sendmsg(struct kiocb *iocb, struct socket *sock, struct msghdr *m,
19
		int total_len);
20
unsigned int vcc_poll(struct file *file, struct socket *sock, poll_table *wait);
21
int vcc_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg);
22 23 24 25
int vcc_setsockopt(struct socket *sock, int level, int optname, char *optval,
		   int optlen);
int vcc_getsockopt(struct socket *sock, int level, int optname, char *optval,
		   int *optlen);
Linus Torvalds's avatar
Linus Torvalds committed
26 27 28

void atm_shutdown_dev(struct atm_dev *dev);

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 33 34 35
int atmpvc_init(void);
void atmpvc_exit(void);
int atmsvc_init(void);
void atmsvc_exit(void);
Linus Torvalds's avatar
Linus Torvalds committed
36
int atm_proc_init(void);
37
void atm_proc_exit(void);
Linus Torvalds's avatar
Linus Torvalds committed
38 39 40 41 42 43 44 45 46 47 48

/* SVC */

void svc_callback(struct atm_vcc *vcc);
int svc_change_qos(struct atm_vcc *vcc,struct atm_qos *qos);

/* p2mp */

int create_leaf(struct socket *leaf,struct socket *session);

#endif