Example self-announcing webserver which controls a servo through a smallHTML userinterface.

Dependencies:   mbed

Committer:
dirkx
Date:
Sat Aug 14 15:56:01 2010 +0000
Revision:
0:a259777c45a3

        

Who changed what in which revision?

UserRevisionLine numberNew contents of line
dirkx 0:a259777c45a3 1 /**
dirkx 0:a259777c45a3 2 * @file
dirkx 0:a259777c45a3 3 * Functions common to all TCP/IPv4 modules, such as the byte order functions.
dirkx 0:a259777c45a3 4 *
dirkx 0:a259777c45a3 5 */
dirkx 0:a259777c45a3 6
dirkx 0:a259777c45a3 7 /*
dirkx 0:a259777c45a3 8 * Copyright (c) 2001-2004 Swedish Institute of Computer Science.
dirkx 0:a259777c45a3 9 * All rights reserved.
dirkx 0:a259777c45a3 10 *
dirkx 0:a259777c45a3 11 * Redistribution and use in source and binary forms, with or without modification,
dirkx 0:a259777c45a3 12 * are permitted provided that the following conditions are met:
dirkx 0:a259777c45a3 13 *
dirkx 0:a259777c45a3 14 * 1. Redistributions of source code must retain the above copyright notice,
dirkx 0:a259777c45a3 15 * this list of conditions and the following disclaimer.
dirkx 0:a259777c45a3 16 * 2. Redistributions in binary form must reproduce the above copyright notice,
dirkx 0:a259777c45a3 17 * this list of conditions and the following disclaimer in the documentation
dirkx 0:a259777c45a3 18 * and/or other materials provided with the distribution.
dirkx 0:a259777c45a3 19 * 3. The name of the author may not be used to endorse or promote products
dirkx 0:a259777c45a3 20 * derived from this software without specific prior written permission.
dirkx 0:a259777c45a3 21 *
dirkx 0:a259777c45a3 22 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
dirkx 0:a259777c45a3 23 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
dirkx 0:a259777c45a3 24 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
dirkx 0:a259777c45a3 25 * SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
dirkx 0:a259777c45a3 26 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
dirkx 0:a259777c45a3 27 * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
dirkx 0:a259777c45a3 28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
dirkx 0:a259777c45a3 29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
dirkx 0:a259777c45a3 30 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
dirkx 0:a259777c45a3 31 * OF SUCH DAMAGE.
dirkx 0:a259777c45a3 32 *
dirkx 0:a259777c45a3 33 * This file is part of the lwIP TCP/IP stack.
dirkx 0:a259777c45a3 34 *
dirkx 0:a259777c45a3 35 * Author: Adam Dunkels <adam@sics.se>
dirkx 0:a259777c45a3 36 *
dirkx 0:a259777c45a3 37 */
dirkx 0:a259777c45a3 38
dirkx 0:a259777c45a3 39 #include "lwip/opt.h"
dirkx 0:a259777c45a3 40
dirkx 0:a259777c45a3 41 #include "lwip/inet.h"
dirkx 0:a259777c45a3 42