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 * Common functions used throughout the stack.
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: Simon Goldschmidt
dirkx 0:a259777c45a3 36 *
dirkx 0:a259777c45a3 37 */
dirkx 0:a259777c45a3 38
dirkx 0:a259777c45a3 39 #include "lwip/opt.h"
dirkx 0:a259777c45a3 40 #include "lwip/def.h"
dirkx 0:a259777c45a3 41
dirkx 0:a259777c45a3 42 /**
dirkx 0:a259777c45a3 43 * These are reference implementations of the byte swapping functions.
dirkx 0:a259777c45a3 44 * Again with the aim of being simple, correct and fully portable.
dirkx 0:a259777c45a3 45 * Byte swapping is the second thing you would want to optimize. You will
dirkx 0:a259777c45a3 46 * need to port it to your architecture and in your cc.h:
dirkx 0:a259777c45a3 47 *
dirkx 0:a259777c45a3 48 * #define LWIP_PLATFORM_BYTESWAP 1
dirkx 0:a259777c45a3 49 * #define LWIP_PLATFORM_HTONS(x) <your_htons>
dirkx 0:a259777c45a3 50 * #define LWIP_PLATFORM_HTONL(x) <your_htonl>
dirkx 0:a259777c45a3 51 *
dirkx 0:a259777c45a3 52 * Note ntohs() and ntohl() are merely references to the htonx counterparts.
dirkx 0:a259777c45a3 53 */
dirkx 0:a259777c45a3 54
dirkx 0:a259777c45a3 55 #if (LWIP_PLATFORM_BYTESWAP == 0) && (BYTE_ORDER == LITTLE_ENDIAN)
dirkx 0:a259777c45a3 56
dirkx 0:a259777c45a3 57 /**
dirkx 0:a259777c45a3 58 * Convert an u16_t from host- to network byte order.
dirkx 0:a259777c45a3 59 *
dirkx 0:a259777c45a3 60 * @param n u16_t in host byte order
dirkx 0:a259777c45a3 61 * @return n in network byte order
dirkx 0:a259777c45a3 62 */
dirkx 0:a259777c45a3 63 u16_t
dirkx 0:a259777c45a3 64 htons(u16_t n)
dirkx 0:a259777c45a3 65 {
dirkx 0:a259777c45a3 66 return ((n & 0xff) << 8) | ((n & 0xff00) >> 8);
dirkx 0:a259777c45a3 67 }
dirkx 0:a259777c45a3 68
dirkx 0:a259777c45a3 69 /**
dirkx 0:a259777c45a3 70 * Convert an u16_t from network- to host byte order.
dirkx 0:a259777c45a3 71 *
dirkx 0:a259777c45a3 72 * @param n u16_t in network byte order
dirkx 0:a259777c45a3 73 * @return n in host byte order
dirkx 0:a259777c45a3 74 */
dirkx 0:a259777c45a3 75 u16_t
dirkx 0:a259777c45a3 76 ntohs(u16_t n)
dirkx 0:a259777c45a3 77 {
dirkx 0:a259777c45a3 78 return htons(n);
dirkx 0:a259777c45a3 79 }
dirkx 0:a259777c45a3 80
dirkx 0:a259777c45a3 81 /**
dirkx 0:a259777c45a3 82 * Convert an u32_t from host- to network byte order.
dirkx 0:a259777c45a3 83 *
dirkx 0:a259777c45a3 84 * @param n u32_t in host byte order
dirkx 0:a259777c45a3 85 * @return n in network byte order
dirkx 0:a259777c45a3 86 */
dirkx 0:a259777c45a3 87 u32_t
dirkx 0:a259777c45a3 88 htonl(u32_t n)
dirkx 0:a259777c45a3 89 {
dirkx 0:a259777c45a3 90 return ((n & 0xff) << 24) |
dirkx 0:a259777c45a3 91 ((n & 0xff00) << 8) |
dirkx 0:a259777c45a3 92 ((n & 0xff0000UL) >> 8) |
dirkx 0:a259777c45a3 93 ((n & 0xff000000UL) >> 24);
dirkx 0:a259777c45a3 94 }
dirkx 0:a259777c45a3 95
dirkx 0:a259777c45a3 96 /**
dirkx 0:a259777c45a3 97 * Convert an u32_t from network- to host byte order.
dirkx 0:a259777c45a3 98 *
dirkx 0:a259777c45a3 99 * @param n u32_t in network byte order
dirkx 0:a259777c45a3 100 * @return n in host byte order
dirkx 0:a259777c45a3 101 */
dirkx 0:a259777c45a3 102 u32_t
dirkx 0:a259777c45a3 103 ntohl(u32_t n)
dirkx 0:a259777c45a3 104 {
dirkx 0:a259777c45a3 105 return htonl(n);
dirkx 0:a259777c45a3 106 }
dirkx 0:a259777c45a3 107
dirkx 0:a259777c45a3 108 #endif /* (LWIP_PLATFORM_BYTESWAP == 0) && (BYTE_ORDER == LITTLE_ENDIAN) */