home *** CD-ROM | disk | FTP | other *** search
/ Super Net 1 / SUPERNET_1.iso / PC / OTROS / SUN / PPP / SUNOS_OL / PPPD_1_0.TAR / ipcp.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-01-14  |  2.3 KB  |  61 lines

  1. /*
  2.  * ipcp.h - IP Control Protocol definitions.
  3.  *
  4.  * Copyright (c) 1989 Carnegie Mellon University.
  5.  * All rights reserved.
  6.  *
  7.  * Redistribution and use in source and binary forms are permitted
  8.  * provided that the above copyright notice and this paragraph are
  9.  * duplicated in all such forms and that any documentation,
  10.  * advertising materials, and other materials related to such
  11.  * distribution and use acknowledge that the software was developed
  12.  * by Carnegie Mellon University.  The name of the
  13.  * University may not be used to endorse or promote products derived
  14.  * from this software without specific prior written permission.
  15.  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
  16.  * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
  17.  * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  18.  */
  19.  
  20. /*
  21.  * Options.
  22.  */
  23. #define CI_ADDRS    1    /* IP Addresses */
  24. #define CI_COMPRESSTYPE    2    /* Compression Type */
  25.  
  26. #define MAX_STATES 16        /* from slcompress.h */
  27.  
  28. #define IPCP_VJMODE_OLD 1        /* "old" mode (option # = 0x0037) */
  29. #define IPCP_VJMODE_CURRENT 2        /* "current"mode (option # = 0x002d) */
  30. #define IPCP_VJMODE_DRAFT 3        /* "draft" mode (option # = 0x002d, */
  31.                                         /*  maxslot and slot number */
  32.                         /*  compression from Aug. 1991 */
  33.                     /*  ipcp draft RFC) */
  34.  
  35. #define IPCP_VJ_COMP 0x002d    /* current value for VJ compression option*/
  36. #define IPCP_VJ_COMP_OLD 0x0037    /* "old" (i.e, broken) value for VJ */
  37.                 /* compression option*/ 
  38.  
  39. typedef struct ipcp_options {
  40.     int neg_addrs : 1;        /* Negotiate IP Addresses? */
  41.     u_long ouraddr, hisaddr;    /* Addresses in NETWORK BYTE ORDER */
  42.     int neg_vj : 1;        /* Van Jacobson Compression? */
  43.     u_char maxslotindex, cflag;    /* fields for Aug. 1991 Draft VJ */
  44.                 /* compression negotiation */
  45. } ipcp_options;
  46.  
  47. extern ipcp_options ipcp_wantoptions[];
  48. extern ipcp_options ipcp_gotoptions[];
  49. extern ipcp_options ipcp_allowoptions[];
  50. extern ipcp_options ipcp_hisoptions[];
  51.  
  52. void ipcp_init __ARGS((int));
  53. void ipcp_vj_setmode __ARGS((int));
  54. void ipcp_activeopen __ARGS((int));
  55. void ipcp_passiveopen __ARGS((int));
  56. void ipcp_close __ARGS((int));
  57. void ipcp_lowerup __ARGS((int));
  58. void ipcp_lowerdown __ARGS((int));
  59. void ipcp_input __ARGS((int, u_char *, int));
  60. void ipcp_protrej __ARGS((int));
  61.