ソースの整理中ですが、利用はできます。

Dependencies:   EthernetInterface HttpServer TextLCD mbed-rpc mbed-rtos mbed Socket lwip-eth lwip-sys lwip

Committer:
yueee_yt
Date:
Wed Mar 12 04:19:54 2014 +0000
Revision:
0:7766f6712673
???????????????

Who changed what in which revision?

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