EthernetNetIf

Dependents:   XBee_WiFi_EA_LPC4088

Committer:
hmike
Date:
Wed Nov 19 12:00:42 2014 +0000
Revision:
0:62580107d20c
EthernetNetIf

Who changed what in which revision?

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