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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* atmclip.h - Classical IP over ATM */
  2.  
  3. /* Written 1995-1998 by Werner Almesberger, EPFL LRC/ICA */
  4.  
  5. #ifndef LINUX_ATMCLIP_H
  6. #define LINUX_ATMCLIP_H
  7. #include <linux/sockios.h>
  8. #include <linux/atmioc.h>
  9. #define RFC1483LLC_LEN 8 /* LLC+OUI+PID = 8 */
  10. #define RFC1626_MTU 9180 /* RFC1626 default MTU */
  11. #define CLIP_DEFAULT_IDLETIMER 1200 /* 20 minutes, see RFC1755 */
  12. #define CLIP_CHECK_INTERVAL  10 /* check every ten seconds */
  13. #define SIOCMKCLIP _IO('a',ATMIOC_CLIP) /* create IP interface */
  14. #ifdef __KERNEL__
  15. extern const unsigned char llc_oui[6];
  16. #endif
  17. #endif