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 * pap.h - PPP Password Authentication 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 * upap.h - User/Password Authentication 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
lorcansmith 0:2a53a4c3238c 52 #ifndef PAP_H
lorcansmith 0:2a53a4c3238c 53 #define PAP_H
lorcansmith 0:2a53a4c3238c 54
lorcansmith 0:2a53a4c3238c 55 #if PAP_SUPPORT /* don't build if not configured for use in lwipopts.h */
lorcansmith 0:2a53a4c3238c 56
lorcansmith 0:2a53a4c3238c 57 /*
lorcansmith 0:2a53a4c3238c 58 * Packet header = Code, id, length.
lorcansmith 0:2a53a4c3238c 59 */
lorcansmith 0:2a53a4c3238c 60 #define UPAP_HEADERLEN (sizeof (u_char) + sizeof (u_char) + sizeof (u_short))
lorcansmith 0:2a53a4c3238c 61
lorcansmith 0:2a53a4c3238c 62
lorcansmith 0:2a53a4c3238c 63 /*
lorcansmith 0:2a53a4c3238c 64 * UPAP codes.
lorcansmith 0:2a53a4c3238c 65 */
lorcansmith 0:2a53a4c3238c 66 #define UPAP_AUTHREQ 1 /* Authenticate-Request */
lorcansmith 0:2a53a4c3238c 67 #define UPAP_AUTHACK 2 /* Authenticate-Ack */
lorcansmith 0:2a53a4c3238c 68 #define UPAP_AUTHNAK 3 /* Authenticate-Nak */
lorcansmith 0:2a53a4c3238c 69
lorcansmith 0:2a53a4c3238c 70 /*
lorcansmith 0:2a53a4c3238c 71 * Each interface is described by upap structure.
lorcansmith 0:2a53a4c3238c 72 */
lorcansmith 0:2a53a4c3238c 73 typedef struct upap_state {
lorcansmith 0:2a53a4c3238c 74 int us_unit; /* Interface unit number */
lorcansmith 0:2a53a4c3238c 75 const char *us_user; /* User */
lorcansmith 0:2a53a4c3238c 76 int us_userlen; /* User length */
lorcansmith 0:2a53a4c3238c 77 const char *us_passwd; /* Password */
lorcansmith 0:2a53a4c3238c 78 int us_passwdlen; /* Password length */
lorcansmith 0:2a53a4c3238c 79 int us_clientstate; /* Client state */
lorcansmith 0:2a53a4c3238c 80 int us_serverstate; /* Server state */
lorcansmith 0:2a53a4c3238c 81 u_char us_id; /* Current id */
lorcansmith 0:2a53a4c3238c 82 int us_timeouttime; /* Timeout (seconds) for auth-req retrans. */
lorcansmith 0:2a53a4c3238c 83 int us_transmits; /* Number of auth-reqs sent */
lorcansmith 0:2a53a4c3238c 84 int us_maxtransmits; /* Maximum number of auth-reqs to send */
lorcansmith 0:2a53a4c3238c 85 int us_reqtimeout; /* Time to wait for auth-req from peer */
lorcansmith 0:2a53a4c3238c 86 } upap_state;
lorcansmith 0:2a53a4c3238c 87
lorcansmith 0:2a53a4c3238c 88 /*
lorcansmith 0:2a53a4c3238c 89 * Client states.
lorcansmith 0:2a53a4c3238c 90 */
lorcansmith 0:2a53a4c3238c 91 #define UPAPCS_INITIAL 0 /* Connection down */
lorcansmith 0:2a53a4c3238c 92 #define UPAPCS_CLOSED 1 /* Connection up, haven't requested auth */
lorcansmith 0:2a53a4c3238c 93 #define UPAPCS_PENDING 2 /* Connection down, have requested auth */
lorcansmith 0:2a53a4c3238c 94 #define UPAPCS_AUTHREQ 3 /* We've sent an Authenticate-Request */
lorcansmith 0:2a53a4c3238c 95 #define UPAPCS_OPEN 4 /* We've received an Ack */
lorcansmith 0:2a53a4c3238c 96 #define UPAPCS_BADAUTH 5 /* We've received a Nak */
lorcansmith 0:2a53a4c3238c 97
lorcansmith 0:2a53a4c3238c 98 /*
lorcansmith 0:2a53a4c3238c 99 * Server states.
lorcansmith 0:2a53a4c3238c 100 */
lorcansmith 0:2a53a4c3238c 101 #define UPAPSS_INITIAL 0 /* Connection down */
lorcansmith 0:2a53a4c3238c 102 #define UPAPSS_CLOSED 1 /* Connection up, haven't requested auth */
lorcansmith 0:2a53a4c3238c 103 #define UPAPSS_PENDING 2 /* Connection down, have requested auth */
lorcansmith 0:2a53a4c3238c 104 #define UPAPSS_LISTEN 3 /* Listening for an Authenticate */
lorcansmith 0:2a53a4c3238c 105 #define UPAPSS_OPEN 4 /* We've sent an Ack */
lorcansmith 0:2a53a4c3238c 106 #define UPAPSS_BADAUTH 5 /* We've sent a Nak */
lorcansmith 0:2a53a4c3238c 107
lorcansmith 0:2a53a4c3238c 108
lorcansmith 0:2a53a4c3238c 109 extern upap_state upap[];
lorcansmith 0:2a53a4c3238c 110
lorcansmith 0:2a53a4c3238c 111 void upap_authwithpeer (int, char *, char *);
lorcansmith 0:2a53a4c3238c 112 void upap_authpeer (int);
lorcansmith 0:2a53a4c3238c 113
lorcansmith 0:2a53a4c3238c 114 extern struct protent pap_protent;
lorcansmith 0:2a53a4c3238c 115
lorcansmith 0:2a53a4c3238c 116 #endif /* PAP_SUPPORT */
lorcansmith 0:2a53a4c3238c 117
lorcansmith 0:2a53a4c3238c 118 #endif /* PAP_H */