kiss.h
上传用户:hepax88
上传日期:2007-01-03
资源大小:1101k
文件大小:0k
源码类别:

TCP/IP协议栈

开发平台:

Visual C++

  1. #ifndef _KISS_H
  2. #define _KISS_H
  3. #ifndef _MBUF_H
  4. #include "mbuf.h"
  5. #endif
  6. #ifndef _IFACE_H
  7. #include "iface.h"
  8. #endif
  9. /* In kiss.c: */
  10. int kiss_free(struct iface *ifp);
  11. int kiss_raw(struct iface *iface,struct mbuf **data);
  12. void kiss_recv(struct iface *iface,struct mbuf **bp);
  13. int kiss_init(struct iface *ifp);
  14. int32 kiss_ioctl(struct iface *iface,int cmd,int set,int32 val);
  15. void kiss_recv(struct iface *iface,struct mbuf **bp);
  16. #endif /* _KISS_H */