wip

Dependents:   EthernetInterface_vz

Fork of lwip by VZTECH

Committer:
mbed_official
Date:
Fri Jun 22 09:25:39 2012 +0000
Revision:
0:51ac1d130fd4
Initial import from lwip-1.4.0: http://download.savannah.gnu.org/releases/lwip/lwip-1.4.0.zip

Who changed what in which revision?

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