home *** CD-ROM | disk | FTP | other *** search
/ HAM Radio 1 / HamRadio.cdr / misc / src0131 / kiss.h < prev    next >
Text File  |  1990-11-10  |  623b  |  29 lines

  1. #ifndef    _KISS_H
  2. #define    _KISS_H
  3.  
  4. #ifndef    _MBUF_H
  5. #include "mbuf.h"
  6. #endif
  7.  
  8. #ifndef    _IFACE_H
  9. #include "iface.h"
  10. #endif
  11.  
  12. /* KISS TNC control */
  13. #define    KISS_DATA    0
  14. #define    KISS_TXD    1
  15. #define    KISS_P        2
  16. #define    KISS_ST        3
  17. #define    KISS_TXT    4
  18. #define    KISS_FD        5
  19. #define    KISS_HW        6
  20. #define    KISS_RETURN    0xff
  21.  
  22. /* In kiss.c: */
  23. int kiss_raw __ARGS((struct iface *iface,struct mbuf *data));
  24. void kiss_recv __ARGS((struct iface *iface,struct mbuf *bp));
  25. int kiss_ioctl __ARGS((struct iface *iface,int argc,char *argv[]));
  26. void kiss_recv __ARGS((struct iface *iface,struct mbuf *bp));
  27.  
  28. #endif    /* _KISS_H */
  29.