Darran Shepherd / Mbed 2 deprecated Bonjour

Dependencies:   mbed

Committer:
darran
Date:
Fri Jun 18 09:11:35 2010 +0000
Revision:
0:55a05330f8cc

        

Who changed what in which revision?

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