SNMP agent attached to SPI slave

Dependencies:   mbed

Committer:
lorcansmith
Date:
Mon Aug 13 15:07:40 2012 +0000
Revision:
0:2a53a4c3238c
v1.1 release includes ioAlarm traps

Who changed what in which revision?

UserRevisionLine numberNew contents of line
lorcansmith 0:2a53a4c3238c 1 /*****************************************************************************
lorcansmith 0:2a53a4c3238c 2 * ipcp.h - PPP IP NCP: Internet Protocol Network Control Protocol header file.
lorcansmith 0:2a53a4c3238c 3 *
lorcansmith 0:2a53a4c3238c 4 * Copyright (c) 2003 by Marc Boucher, Services Informatiques (MBSI) inc.
lorcansmith 0:2a53a4c3238c 5 * portions Copyright (c) 1997 Global Election Systems Inc.
lorcansmith 0:2a53a4c3238c 6 *
lorcansmith 0:2a53a4c3238c 7 * The authors hereby grant permission to use, copy, modify, distribute,
lorcansmith 0:2a53a4c3238c 8 * and license this software and its documentation for any purpose, provided
lorcansmith 0:2a53a4c3238c 9 * that existing copyright notices are retained in all copies and that this
lorcansmith 0:2a53a4c3238c 10 * notice and the following disclaimer are included verbatim in any
lorcansmith 0:2a53a4c3238c 11 * distributions. No written agreement, license, or royalty fee is required
lorcansmith 0:2a53a4c3238c 12 * for any of the authorized uses.
lorcansmith 0:2a53a4c3238c 13 *
lorcansmith 0:2a53a4c3238c 14 * THIS SOFTWARE IS PROVIDED BY THE CONTRIBUTORS *AS IS* AND ANY EXPRESS OR
lorcansmith 0:2a53a4c3238c 15 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
lorcansmith 0:2a53a4c3238c 16 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
lorcansmith 0:2a53a4c3238c 17 * IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
lorcansmith 0:2a53a4c3238c 18 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
lorcansmith 0:2a53a4c3238c 19 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
lorcansmith 0:2a53a4c3238c 20 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
lorcansmith 0:2a53a4c3238c 21 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
lorcansmith 0:2a53a4c3238c 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
lorcansmith 0:2a53a4c3238c 23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
lorcansmith 0:2a53a4c3238c 24 *
lorcansmith 0:2a53a4c3238c 25 ******************************************************************************
lorcansmith 0:2a53a4c3238c 26 * REVISION HISTORY
lorcansmith 0:2a53a4c3238c 27 *
lorcansmith 0:2a53a4c3238c 28 * 03-01-01 Marc Boucher <marc@mbsi.ca>
lorcansmith 0:2a53a4c3238c 29 * Ported to lwIP.
lorcansmith 0:2a53a4c3238c 30 * 97-12-04 Guy Lancaster <glanca@gesn.com>, Global Election Systems Inc.
lorcansmith 0:2a53a4c3238c 31 * Original derived from BSD codes.
lorcansmith 0:2a53a4c3238c 32 *****************************************************************************/
lorcansmith 0:2a53a4c3238c 33 /*
lorcansmith 0:2a53a4c3238c 34 * ipcp.h - IP Control Protocol definitions.
lorcansmith 0:2a53a4c3238c 35 *
lorcansmith 0:2a53a4c3238c 36 * Copyright (c) 1989 Carnegie Mellon University.
lorcansmith 0:2a53a4c3238c 37 * All rights reserved.
lorcansmith 0:2a53a4c3238c 38 *
lorcansmith 0:2a53a4c3238c 39 * Redistribution and use in source and binary forms are permitted
lorcansmith 0:2a53a4c3238c 40 * provided that the above copyright notice and this paragraph are
lorcansmith 0:2a53a4c3238c 41 * duplicated in all such forms and that any documentation,
lorcansmith 0:2a53a4c3238c 42 * advertising materials, and other materials related to such
lorcansmith 0:2a53a4c3238c 43 * distribution and use acknowledge that the software was developed
lorcansmith 0:2a53a4c3238c 44 * by Carnegie Mellon University. The name of the
lorcansmith 0:2a53a4c3238c 45 * University may not be used to endorse or promote products derived
lorcansmith 0:2a53a4c3238c 46 * from this software without specific prior written permission.
lorcansmith 0:2a53a4c3238c 47 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
lorcansmith 0:2a53a4c3238c 48 * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
lorcansmith 0:2a53a4c3238c 49 * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
lorcansmith 0:2a53a4c3238c 50 *
lorcansmith 0:2a53a4c3238c 51 * $Id: ipcp.h,v 1.4 2010/01/18 20:49:43 goldsimon Exp $
lorcansmith 0:2a53a4c3238c 52 */
lorcansmith 0:2a53a4c3238c 53
lorcansmith 0:2a53a4c3238c 54 #ifndef IPCP_H
lorcansmith 0:2a53a4c3238c 55 #define IPCP_H
lorcansmith 0:2a53a4c3238c 56
lorcansmith 0:2a53a4c3238c 57 /*
lorcansmith 0:2a53a4c3238c 58 * Options.
lorcansmith 0:2a53a4c3238c 59 */
lorcansmith 0:2a53a4c3238c 60 #define CI_ADDRS 1 /* IP Addresses */
lorcansmith 0:2a53a4c3238c 61 #define CI_COMPRESSTYPE 2 /* Compression Type */
lorcansmith 0:2a53a4c3238c 62 #define CI_ADDR 3
lorcansmith 0:2a53a4c3238c 63
lorcansmith 0:2a53a4c3238c 64 #define CI_MS_DNS1 129 /* Primary DNS value */
lorcansmith 0:2a53a4c3238c 65 #define CI_MS_WINS1 128 /* Primary WINS value */
lorcansmith 0:2a53a4c3238c 66 #define CI_MS_DNS2 131 /* Secondary DNS value */
lorcansmith 0:2a53a4c3238c 67 #define CI_MS_WINS2 130 /* Secondary WINS value */
lorcansmith 0:2a53a4c3238c 68
lorcansmith 0:2a53a4c3238c 69 #define IPCP_VJMODE_OLD 1 /* "old" mode (option # = 0x0037) */
lorcansmith 0:2a53a4c3238c 70 #define IPCP_VJMODE_RFC1172 2 /* "old-rfc"mode (option # = 0x002d) */
lorcansmith 0:2a53a4c3238c 71 #define IPCP_VJMODE_RFC1332 3 /* "new-rfc"mode (option # = 0x002d, */
lorcansmith 0:2a53a4c3238c 72 /* maxslot and slot number compression) */
lorcansmith 0:2a53a4c3238c 73
lorcansmith 0:2a53a4c3238c 74 #define IPCP_VJ_COMP 0x002d /* current value for VJ compression option */
lorcansmith 0:2a53a4c3238c 75 #define IPCP_VJ_COMP_OLD 0x0037 /* "old" (i.e, broken) value for VJ */
lorcansmith 0:2a53a4c3238c 76 /* compression option */
lorcansmith 0:2a53a4c3238c 77
lorcansmith 0:2a53a4c3238c 78 typedef struct ipcp_options {
lorcansmith 0:2a53a4c3238c 79 u_int neg_addr : 1; /* Negotiate IP Address? */
lorcansmith 0:2a53a4c3238c 80 u_int old_addrs : 1; /* Use old (IP-Addresses) option? */
lorcansmith 0:2a53a4c3238c 81 u_int req_addr : 1; /* Ask peer to send IP address? */
lorcansmith 0:2a53a4c3238c 82 u_int default_route : 1; /* Assign default route through interface? */
lorcansmith 0:2a53a4c3238c 83 u_int proxy_arp : 1; /* Make proxy ARP entry for peer? */
lorcansmith 0:2a53a4c3238c 84 u_int neg_vj : 1; /* Van Jacobson Compression? */
lorcansmith 0:2a53a4c3238c 85 u_int old_vj : 1; /* use old (short) form of VJ option? */
lorcansmith 0:2a53a4c3238c 86 u_int accept_local : 1; /* accept peer's value for ouraddr */
lorcansmith 0:2a53a4c3238c 87 u_int accept_remote : 1; /* accept peer's value for hisaddr */
lorcansmith 0:2a53a4c3238c 88 u_int req_dns1 : 1; /* Ask peer to send primary DNS address? */
lorcansmith 0:2a53a4c3238c 89 u_int req_dns2 : 1; /* Ask peer to send secondary DNS address? */
lorcansmith 0:2a53a4c3238c 90 u_short vj_protocol; /* protocol value to use in VJ option */
lorcansmith 0:2a53a4c3238c 91 u_char maxslotindex; /* VJ slots - 1. */
lorcansmith 0:2a53a4c3238c 92 u_char cflag; /* VJ slot compression flag. */
lorcansmith 0:2a53a4c3238c 93 u32_t ouraddr, hisaddr; /* Addresses in NETWORK BYTE ORDER */
lorcansmith 0:2a53a4c3238c 94 u32_t dnsaddr[2]; /* Primary and secondary MS DNS entries */
lorcansmith 0:2a53a4c3238c 95 u32_t winsaddr[2]; /* Primary and secondary MS WINS entries */
lorcansmith 0:2a53a4c3238c 96 } ipcp_options;
lorcansmith 0:2a53a4c3238c 97
lorcansmith 0:2a53a4c3238c 98 extern fsm ipcp_fsm[];
lorcansmith 0:2a53a4c3238c 99 extern ipcp_options ipcp_wantoptions[];
lorcansmith 0:2a53a4c3238c 100 extern ipcp_options ipcp_gotoptions[];
lorcansmith 0:2a53a4c3238c 101 extern ipcp_options ipcp_allowoptions[];
lorcansmith 0:2a53a4c3238c 102 extern ipcp_options ipcp_hisoptions[];
lorcansmith 0:2a53a4c3238c 103
lorcansmith 0:2a53a4c3238c 104 extern struct protent ipcp_protent;
lorcansmith 0:2a53a4c3238c 105
lorcansmith 0:2a53a4c3238c 106 #endif /* IPCP_H */