Trial code integration web page update with analogue data and ntp support

Dependencies:   NTPClient_NetServices mbed

Committer:
pmr1
Date:
Fri Aug 06 17:57:45 2010 +0000
Revision:
0:8cc2035bebfc

        

Who changed what in which revision?

UserRevisionLine numberNew contents of line
pmr1 0:8cc2035bebfc 1 /*****************************************************************************
pmr1 0:8cc2035bebfc 2 * chpms.h - Network Microsoft Challenge Handshake Protocol header file.
pmr1 0:8cc2035bebfc 3 *
pmr1 0:8cc2035bebfc 4 * Copyright (c) 2003 by Marc Boucher, Services Informatiques (MBSI) inc.
pmr1 0:8cc2035bebfc 5 * portions Copyright (c) 1998 Global Election Systems Inc.
pmr1 0:8cc2035bebfc 6 *
pmr1 0:8cc2035bebfc 7 * The authors hereby grant permission to use, copy, modify, distribute,
pmr1 0:8cc2035bebfc 8 * and license this software and its documentation for any purpose, provided
pmr1 0:8cc2035bebfc 9 * that existing copyright notices are retained in all copies and that this
pmr1 0:8cc2035bebfc 10 * notice and the following disclaimer are included verbatim in any
pmr1 0:8cc2035bebfc 11 * distributions. No written agreement, license, or royalty fee is required
pmr1 0:8cc2035bebfc 12 * for any of the authorized uses.
pmr1 0:8cc2035bebfc 13 *
pmr1 0:8cc2035bebfc 14 * THIS SOFTWARE IS PROVIDED BY THE CONTRIBUTORS *AS IS* AND ANY EXPRESS OR
pmr1 0:8cc2035bebfc 15 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
pmr1 0:8cc2035bebfc 16 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
pmr1 0:8cc2035bebfc 17 * IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
pmr1 0:8cc2035bebfc 18 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
pmr1 0:8cc2035bebfc 19 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
pmr1 0:8cc2035bebfc 20 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
pmr1 0:8cc2035bebfc 21 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
pmr1 0:8cc2035bebfc 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
pmr1 0:8cc2035bebfc 23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
pmr1 0:8cc2035bebfc 24 *
pmr1 0:8cc2035bebfc 25 ******************************************************************************
pmr1 0:8cc2035bebfc 26 * REVISION HISTORY
pmr1 0:8cc2035bebfc 27 *
pmr1 0:8cc2035bebfc 28 * 03-01-01 Marc Boucher <marc@mbsi.ca>
pmr1 0:8cc2035bebfc 29 * Ported to lwIP.
pmr1 0:8cc2035bebfc 30 * 98-01-30 Guy Lancaster <lancasterg@acm.org>, Global Election Systems Inc.
pmr1 0:8cc2035bebfc 31 * Original built from BSD network code.
pmr1 0:8cc2035bebfc 32 ******************************************************************************/
pmr1 0:8cc2035bebfc 33 /*
pmr1 0:8cc2035bebfc 34 * chap.h - Challenge Handshake Authentication Protocol definitions.
pmr1 0:8cc2035bebfc 35 *
pmr1 0:8cc2035bebfc 36 * Copyright (c) 1995 Eric Rosenquist, Strata Software Limited.
pmr1 0:8cc2035bebfc 37 * http://www.strataware.com/
pmr1 0:8cc2035bebfc 38 *
pmr1 0:8cc2035bebfc 39 * All rights reserved.
pmr1 0:8cc2035bebfc 40 *
pmr1 0:8cc2035bebfc 41 * Redistribution and use in source and binary forms are permitted
pmr1 0:8cc2035bebfc 42 * provided that the above copyright notice and this paragraph are
pmr1 0:8cc2035bebfc 43 * duplicated in all such forms and that any documentation,
pmr1 0:8cc2035bebfc 44 * advertising materials, and other materials related to such
pmr1 0:8cc2035bebfc 45 * distribution and use acknowledge that the software was developed
pmr1 0:8cc2035bebfc 46 * by Eric Rosenquist. The name of the author may not be used to
pmr1 0:8cc2035bebfc 47 * endorse or promote products derived from this software without
pmr1 0:8cc2035bebfc 48 * specific prior written permission.
pmr1 0:8cc2035bebfc 49 *
pmr1 0:8cc2035bebfc 50 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
pmr1 0:8cc2035bebfc 51 * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
pmr1 0:8cc2035bebfc 52 * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
pmr1 0:8cc2035bebfc 53 *
pmr1 0:8cc2035bebfc 54 * $Id: chpms.h,v 1.5 2007/12/19 20:47:23 fbernon Exp $
pmr1 0:8cc2035bebfc 55 */
pmr1 0:8cc2035bebfc 56
pmr1 0:8cc2035bebfc 57 #ifndef CHPMS_H
pmr1 0:8cc2035bebfc 58 #define CHPMS_H
pmr1 0:8cc2035bebfc 59
pmr1 0:8cc2035bebfc 60 #define MAX_NT_PASSWORD 256 /* Maximum number of (Unicode) chars in an NT password */
pmr1 0:8cc2035bebfc 61
pmr1 0:8cc2035bebfc 62 void ChapMS (chap_state *, char *, int, char *, int);
pmr1 0:8cc2035bebfc 63
pmr1 0:8cc2035bebfc 64 #endif /* CHPMS_H */