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

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 * magic.h - Network Random Number Generator 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) 1997 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 * 97-12-04 Guy Lancaster <glanca@gesn.com>, Global Election Systems Inc.
yueee_yt 0:7766f6712673 31 * Original derived from BSD codes.
yueee_yt 0:7766f6712673 32 *****************************************************************************/
yueee_yt 0:7766f6712673 33 /*
yueee_yt 0:7766f6712673 34 * magic.h - PPP Magic Number definitions.
yueee_yt 0:7766f6712673 35 *
yueee_yt 0:7766f6712673 36 * Copyright (c) 1989 Carnegie Mellon University.
yueee_yt 0:7766f6712673 37 * All rights reserved.
yueee_yt 0:7766f6712673 38 *
yueee_yt 0:7766f6712673 39 * Redistribution and use in source and binary forms are permitted
yueee_yt 0:7766f6712673 40 * provided that the above copyright notice and this paragraph are
yueee_yt 0:7766f6712673 41 * duplicated in all such forms and that any documentation,
yueee_yt 0:7766f6712673 42 * advertising materials, and other materials related to such
yueee_yt 0:7766f6712673 43 * distribution and use acknowledge that the software was developed
yueee_yt 0:7766f6712673 44 * by Carnegie Mellon University. The name of the
yueee_yt 0:7766f6712673 45 * University may not be used to endorse or promote products derived
yueee_yt 0:7766f6712673 46 * from this software without specific prior written permission.
yueee_yt 0:7766f6712673 47 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
yueee_yt 0:7766f6712673 48 * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
yueee_yt 0:7766f6712673 49 * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
yueee_yt 0:7766f6712673 50 *
yueee_yt 0:7766f6712673 51 * $Id: magic.h,v 1.3 2010/01/18 20:49:43 goldsimon Exp $
yueee_yt 0:7766f6712673 52 */
yueee_yt 0:7766f6712673 53
yueee_yt 0:7766f6712673 54 #ifndef MAGIC_H
yueee_yt 0:7766f6712673 55 #define MAGIC_H
yueee_yt 0:7766f6712673 56
yueee_yt 0:7766f6712673 57 /* Initialize the magic number generator */
yueee_yt 0:7766f6712673 58 void magicInit(void);
yueee_yt 0:7766f6712673 59
yueee_yt 0:7766f6712673 60 /* Returns the next magic number */
yueee_yt 0:7766f6712673 61 u32_t magic(void);
yueee_yt 0:7766f6712673 62
yueee_yt 0:7766f6712673 63 #endif /* MAGIC_H */