lcp.h
上传用户:yyhongfa
上传日期:2013-01-18
资源大小:267k
文件大小:6k
开发平台:

C/C++

  1. /*****************************************************************************
  2. * lcp.h - Network Link Control Protocol header file.
  3. *
  4. * Copyright (c) 2003 by Marc Boucher, Services Informatiques (MBSI) inc.
  5. * portions Copyright (c) 1997 Global Election Systems Inc.
  6. *
  7. * The authors hereby grant permission to use, copy, modify, distribute,
  8. * and license this software and its documentation for any purpose, provided
  9. * that existing copyright notices are retained in all copies and that this
  10. * notice and the following disclaimer are included verbatim in any 
  11. * distributions. No written agreement, license, or royalty fee is required
  12. * for any of the authorized uses.
  13. *
  14. * THIS SOFTWARE IS PROVIDED BY THE CONTRIBUTORS *AS IS* AND ANY EXPRESS OR
  15. * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  16. * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 
  17. * IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
  18. * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  19. * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  20. * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  21. * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  22. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  23. * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  24. *
  25. ******************************************************************************
  26. * REVISION HISTORY
  27. *
  28. * 03-01-01 Marc Boucher <marc@mbsi.ca>
  29. *   Ported to lwIP.
  30. * 97-11-05 Guy Lancaster <glanca@gesn.com>, Global Election Systems Inc.
  31. * Original derived from BSD codes.
  32. *****************************************************************************/
  33. /*
  34.  * lcp.h - Link Control Protocol definitions.
  35.  *
  36.  * Copyright (c) 1989 Carnegie Mellon University.
  37.  * All rights reserved.
  38.  *
  39.  * Redistribution and use in source and binary forms are permitted
  40.  * provided that the above copyright notice and this paragraph are
  41.  * duplicated in all such forms and that any documentation,
  42.  * advertising materials, and other materials related to such
  43.  * distribution and use acknowledge that the software was developed
  44.  * by Carnegie Mellon University.  The name of the
  45.  * University may not be used to endorse or promote products derived
  46.  * from this software without specific prior written permission.
  47.  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
  48.  * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
  49.  * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  50.  *
  51.  * $Id: lcp.h,v 1.1 2003/05/27 14:37:56 jani Exp $
  52.  */
  53. #ifndef LCP_H
  54. #define LCP_H
  55. /*************************
  56. *** PUBLIC DEFINITIONS ***
  57. *************************/
  58. /*
  59.  * Options.
  60.  */
  61. #define CI_MRU 1 /* Maximum Receive Unit */
  62. #define CI_ASYNCMAP 2 /* Async Control Character Map */
  63. #define CI_AUTHTYPE 3 /* Authentication Type */
  64. #define CI_QUALITY 4 /* Quality Protocol */
  65. #define CI_MAGICNUMBER 5 /* Magic Number */
  66. #define CI_PCOMPRESSION 7 /* Protocol Field Compression */
  67. #define CI_ACCOMPRESSION 8 /* Address/Control Field Compression */
  68. #define CI_CALLBACK 13 /* callback */
  69. #define CI_MRRU 17 /* max reconstructed receive unit; multilink */
  70. #define CI_SSNHF 18 /* short sequence numbers for multilink */
  71. #define CI_EPDISC 19 /* endpoint discriminator */
  72. /*
  73.  * LCP-specific packet types.
  74.  */
  75. #define PROTREJ 8 /* Protocol Reject */
  76. #define ECHOREQ 9 /* Echo Request */
  77. #define ECHOREP 10 /* Echo Reply */
  78. #define DISCREQ 11 /* Discard Request */
  79. #define CBCP_OPT 6 /* Use callback control protocol */
  80. /************************
  81. *** PUBLIC DATA TYPES ***
  82. ************************/
  83. /*
  84.  * The state of options is described by an lcp_options structure.
  85.  */
  86. typedef struct lcp_options {
  87.     u_int passive : 1; /* Don't die if we don't get a response */
  88.     u_int silent : 1; /* Wait for the other end to start first */
  89.     u_int restart : 1; /* Restart vs. exit after close */
  90.     u_int neg_mru : 1; /* Negotiate the MRU? */
  91.     u_int neg_asyncmap : 1; /* Negotiate the async map? */
  92.     u_int neg_upap : 1; /* Ask for UPAP authentication? */
  93.     u_int neg_chap : 1; /* Ask for CHAP authentication? */
  94.     u_int neg_magicnumber : 1; /* Ask for magic number? */
  95.     u_int neg_pcompression : 1; /* HDLC Protocol Field Compression? */
  96.     u_int neg_accompression : 1; /* HDLC Address/Control Field Compression? */
  97.     u_int neg_lqr : 1; /* Negotiate use of Link Quality Reports */
  98.     u_int neg_cbcp : 1; /* Negotiate use of CBCP */
  99. #ifdef PPP_MULTILINK
  100.     u_int neg_mrru : 1; /* Negotiate multilink MRRU */
  101.     u_int neg_ssnhf : 1; /* Negotiate short sequence numbers */
  102.     u_int neg_endpoint : 1; /* Negotiate endpoint discriminator */
  103. #endif
  104.     u_short mru; /* Value of MRU */
  105. #ifdef PPP_MULTILINK
  106.     u_short mrru; /* Value of MRRU, and multilink enable */
  107. #endif
  108.     u_char chap_mdtype; /* which MD type (hashing algorithm) */
  109.     u32_t asyncmap; /* Value of async map */
  110.     u32_t magicnumber;
  111.     int numloops; /* Number of loops during magic number neg. */
  112.     u32_t lqr_period; /* Reporting period for LQR 1/100ths second */
  113. #ifdef PPP_MULTILINK
  114.     struct epdisc endpoint; /* endpoint discriminator */
  115. #endif
  116. } lcp_options;
  117. /*
  118.  * Values for phase from BSD pppd.h based on RFC 1661.
  119.  */
  120. typedef enum {
  121. PHASE_DEAD = 0,
  122. PHASE_INITIALIZE,
  123. PHASE_ESTABLISH,
  124. PHASE_AUTHENTICATE,
  125. PHASE_CALLBACK,
  126. PHASE_NETWORK,
  127. PHASE_TERMINATE
  128. } LinkPhase;
  129. /*****************************
  130. *** PUBLIC DATA STRUCTURES ***
  131. *****************************/
  132. extern LinkPhase lcp_phase[NUM_PPP]; /* Phase of link session (RFC 1661) */
  133. extern lcp_options lcp_wantoptions[];
  134. extern lcp_options lcp_gotoptions[];
  135. extern lcp_options lcp_allowoptions[];
  136. extern lcp_options lcp_hisoptions[];
  137. extern ext_accm xmit_accm[];
  138. /***********************
  139. *** PUBLIC FUNCTIONS ***
  140. ***********************/
  141. void lcp_init (int);
  142. void lcp_open (int);
  143. void lcp_close (int, char *);
  144. void lcp_lowerup (int);
  145. void lcp_lowerdown (int);
  146. void lcp_sprotrej (int, u_char *, int); /* send protocol reject */
  147. extern struct protent lcp_protent;
  148. /* Default number of times we receive our magic number from the peer
  149.    before deciding the link is looped-back. */
  150. #define DEFLOOPBACKFAIL 10
  151. #endif /* LCP_H */