common.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:1k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  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. #ifndef NET_ATM_COMMON_H
  5. #define NET_ATM_COMMON_H
  6. #include <linux/net.h>
  7. #include <linux/poll.h> /* for poll_table */
  8. int atm_create(struct socket *sock,int protocol,int family);
  9. int atm_release(struct socket *sock);
  10. int atm_connect(struct socket *sock,int itf,short vpi,int vci);
  11. int atm_recvmsg(struct socket *sock,struct msghdr *m,int total_len,
  12.     int flags,struct scm_cookie *scm);
  13. int atm_sendmsg(struct socket *sock,struct msghdr *m,int total_len,
  14.   struct scm_cookie *scm);
  15. unsigned int atm_poll(struct file *file,struct socket *sock,poll_table *wait);
  16. int atm_ioctl(struct socket *sock,unsigned int cmd,unsigned long arg);
  17. int atm_setsockopt(struct socket *sock,int level,int optname,char *optval,
  18.     int optlen);
  19. int atm_getsockopt(struct socket *sock,int level,int optname,char *optval,
  20.     int *optlen);
  21. int atm_connect_vcc(struct atm_vcc *vcc,int itf,short vpi,int vci);
  22. void atm_release_vcc_sk(struct sock *sk,int free_sk);
  23. void atm_shutdown_dev(struct atm_dev *dev);
  24. int atm_proc_init(void);
  25. /* SVC */
  26. void svc_callback(struct atm_vcc *vcc);
  27. int svc_change_qos(struct atm_vcc *vcc,struct atm_qos *qos);
  28. /* p2mp */
  29. int create_leaf(struct socket *leaf,struct socket *session);
  30. #endif