if_slip.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * Swansea University Computer Society NET3
  3.  *
  4.  * This file declares the constants of special use with the SLIP/CSLIP/
  5.  * KISS TNC driver.
  6.  */
  7.  
  8. #ifndef __LINUX_SLIP_H
  9. #define __LINUX_SLIP_H
  10. #define SL_MODE_SLIP 0
  11. #define SL_MODE_CSLIP 1
  12. #define  SL_MODE_KISS 4
  13. #define SL_OPT_SIXBIT 2
  14. #define SL_OPT_ADAPTIVE 8
  15. /*
  16.  * VSV = ioctl for keepalive & outfill in SLIP driver 
  17.  */
  18.  
  19. #define SIOCSKEEPALIVE (SIOCDEVPRIVATE) /* Set keepalive timeout in sec */
  20. #define SIOCGKEEPALIVE (SIOCDEVPRIVATE+1) /* Get keepalive timeout */
  21. #define SIOCSOUTFILL (SIOCDEVPRIVATE+2) /* Set outfill timeout */
  22. #define SIOCGOUTFILL (SIOCDEVPRIVATE+3) /* Get outfill timeout */
  23. #define SIOCSLEASE (SIOCDEVPRIVATE+4) /* Set "leased" line type */
  24. #define SIOCGLEASE (SIOCDEVPRIVATE+5) /* Get line type */
  25. #endif