Ethernetwebsoc

Dependencies:   C12832_lcd LM75B WebSocketClient mbed-rtos mbed Socket lwip-eth lwip-sys lwip

Committer:
GordonSin
Date:
Fri May 31 04:09:54 2013 +0000
Revision:
0:0ed2a7c7190c
31/5/2013;

Who changed what in which revision?

UserRevisionLine numberNew contents of line
GordonSin 0:0ed2a7c7190c 1 /*****************************************************************************
GordonSin 0:0ed2a7c7190c 2 * magic.c - Network Random Number Generator program file.
GordonSin 0:0ed2a7c7190c 3 *
GordonSin 0:0ed2a7c7190c 4 * Copyright (c) 2003 by Marc Boucher, Services Informatiques (MBSI) inc.
GordonSin 0:0ed2a7c7190c 5 * portions Copyright (c) 1997 by Global Election Systems Inc.
GordonSin 0:0ed2a7c7190c 6 *
GordonSin 0:0ed2a7c7190c 7 * The authors hereby grant permission to use, copy, modify, distribute,
GordonSin 0:0ed2a7c7190c 8 * and license this software and its documentation for any purpose, provided
GordonSin 0:0ed2a7c7190c 9 * that existing copyright notices are retained in all copies and that this
GordonSin 0:0ed2a7c7190c 10 * notice and the following disclaimer are included verbatim in any
GordonSin 0:0ed2a7c7190c 11 * distributions. No written agreement, license, or royalty fee is required
GordonSin 0:0ed2a7c7190c 12 * for any of the authorized uses.
GordonSin 0:0ed2a7c7190c 13 *
GordonSin 0:0ed2a7c7190c 14 * THIS SOFTWARE IS PROVIDED BY THE CONTRIBUTORS *AS IS* AND ANY EXPRESS OR
GordonSin 0:0ed2a7c7190c 15 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
GordonSin 0:0ed2a7c7190c 16 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
GordonSin 0:0ed2a7c7190c 17 * IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
GordonSin 0:0ed2a7c7190c 18 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
GordonSin 0:0ed2a7c7190c 19 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
GordonSin 0:0ed2a7c7190c 20 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
GordonSin 0:0ed2a7c7190c 21 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
GordonSin 0:0ed2a7c7190c 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
GordonSin 0:0ed2a7c7190c 23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
GordonSin 0:0ed2a7c7190c 24 *
GordonSin 0:0ed2a7c7190c 25 ******************************************************************************
GordonSin 0:0ed2a7c7190c 26 * REVISION HISTORY
GordonSin 0:0ed2a7c7190c 27 *
GordonSin 0:0ed2a7c7190c 28 * 03-01-01 Marc Boucher <marc@mbsi.ca>
GordonSin 0:0ed2a7c7190c 29 * Ported to lwIP.
GordonSin 0:0ed2a7c7190c 30 * 97-12-04 Guy Lancaster <lancasterg@acm.org>, Global Election Systems Inc.
GordonSin 0:0ed2a7c7190c 31 * Original based on BSD magic.c.
GordonSin 0:0ed2a7c7190c 32 *****************************************************************************/
GordonSin 0:0ed2a7c7190c 33 /*
GordonSin 0:0ed2a7c7190c 34 * magic.c - PPP Magic Number routines.
GordonSin 0:0ed2a7c7190c 35 *
GordonSin 0:0ed2a7c7190c 36 * Copyright (c) 1989 Carnegie Mellon University.
GordonSin 0:0ed2a7c7190c 37 * All rights reserved.
GordonSin 0:0ed2a7c7190c 38 *
GordonSin 0:0ed2a7c7190c 39 * Redistribution and use in source and binary forms are permitted
GordonSin 0:0ed2a7c7190c 40 * provided that the above copyright notice and this paragraph are
GordonSin 0:0ed2a7c7190c 41 * duplicated in all such forms and that any documentation,
GordonSin 0:0ed2a7c7190c 42 * advertising materials, and other materials related to such
GordonSin 0:0ed2a7c7190c 43 * distribution and use acknowledge that the software was developed
GordonSin 0:0ed2a7c7190c 44 * by Carnegie Mellon University. The name of the
GordonSin 0:0ed2a7c7190c 45 * University may not be used to endorse or promote products derived
GordonSin 0:0ed2a7c7190c 46 * from this software without specific prior written permission.
GordonSin 0:0ed2a7c7190c 47 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
GordonSin 0:0ed2a7c7190c 48 * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
GordonSin 0:0ed2a7c7190c 49 * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
GordonSin 0:0ed2a7c7190c 50 */
GordonSin 0:0ed2a7c7190c 51
GordonSin 0:0ed2a7c7190c 52 #include "lwip/opt.h"
GordonSin 0:0ed2a7c7190c 53
GordonSin 0:0ed2a7c7190c 54 #if PPP_SUPPORT
GordonSin 0:0ed2a7c7190c 55
GordonSin 0:0ed2a7c7190c 56 #include "ppp.h"
GordonSin 0:0ed2a7c7190c 57 #include "randm.h"
GordonSin 0:0ed2a7c7190c 58 #include "magic.h"
GordonSin 0:0ed2a7c7190c 59
GordonSin 0:0ed2a7c7190c 60
GordonSin 0:0ed2a7c7190c 61 /*
GordonSin 0:0ed2a7c7190c 62 * magicInit - Initialize the magic number generator.
GordonSin 0:0ed2a7c7190c 63 *
GordonSin 0:0ed2a7c7190c 64 * Since we use another random number generator that has its own
GordonSin 0:0ed2a7c7190c 65 * initialization, we do nothing here.
GordonSin 0:0ed2a7c7190c 66 */
GordonSin 0:0ed2a7c7190c 67 void magicInit()
GordonSin 0:0ed2a7c7190c 68 {
GordonSin 0:0ed2a7c7190c 69 return;
GordonSin 0:0ed2a7c7190c 70 }
GordonSin 0:0ed2a7c7190c 71
GordonSin 0:0ed2a7c7190c 72 /*
GordonSin 0:0ed2a7c7190c 73 * magic - Returns the next magic number.
GordonSin 0:0ed2a7c7190c 74 */
GordonSin 0:0ed2a7c7190c 75 u32_t magic()
GordonSin 0:0ed2a7c7190c 76 {
GordonSin 0:0ed2a7c7190c 77 return avRandom();
GordonSin 0:0ed2a7c7190c 78 }
GordonSin 0:0ed2a7c7190c 79
GordonSin 0:0ed2a7c7190c 80 #endif /* PPP_SUPPORT */