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

TCP/IP协议栈

开发平台:

Visual C++

  1. #ifndef _PPPPAP_H
  2. #define _PPPPAP_H
  3. /* PAP config packet codes */
  4. /* PAP control block */
  5. struct pap_s {
  6. char *username; /* Username for REQ */
  7. char *password; /* Password for REQ */
  8. char *message; /* message from last ACK/NAK */
  9. struct proc *pp; /* user/password process */
  10. };
  11. #define PAP_REQ_TRY 100 /* REQ attempts */
  12. #define PAP_FAIL_MAX 5 /* # attempts from remote */
  13. #define PAP_TIMEOUT 3 /* Seconds to wait for response */
  14. int pap_local(struct ppp_s *ppp_p);
  15. int pap_remote(struct ppp_s *ppp_p);
  16. void pap_down(struct fsm_s *fsm_p);
  17. void pap_proc(struct fsm_s *fsm_p, struct mbuf **bpp);
  18. int doppp_pap(int argc, char *argv[], void *p);
  19. void pap_init(struct ppp_s *ppp_p);
  20. #endif /* _PPPPAP_H */