LwIP with PPP & Ethernet integration

Dependents:   NetworkingCoreLib

This is the mbed port of the LwIP stack: http://savannah.nongnu.org/projects/lwip/

It includes contributed content from NXP's port for LPCxxxx devices: http://www.lpcware.com/content/project/lightweight-ip-lwip-networking-stack

Licence

LwIP is licenced under the BSD licence:

Copyright (c) 2001-2004 Swedish Institute of Computer Science. 
All rights reserved. 
Redistribution and use in source and binary forms, with or without modification, 
are permitted provided that the following conditions are met: 
1. Redistributions of source code must retain the above copyright notice, 
this list of conditions and the following disclaimer. 
2. Redistributions in binary form must reproduce the above copyright notice, 
this list of conditions and the following disclaimer in the documentation 
and/or other materials provided with the distribution. 
3. The name of the author may not be used to endorse or promote products 
derived from this software without specific prior written permission. 
THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED 
WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT 
SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT 
OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING 
IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY 
OF SUCH DAMAGE.
Committer:
donatien
Date:
Thu May 24 15:53:48 2012 +0000
Revision:
0:8e01dca41002
Merge with Emilio's LwIp

Who changed what in which revision?

UserRevisionLine numberNew contents of line
donatien 0:8e01dca41002 1 /*
donatien 0:8e01dca41002 2 * Copyright (c) 2001-2004 Swedish Institute of Computer Science.
donatien 0:8e01dca41002 3 * All rights reserved.
donatien 0:8e01dca41002 4 *
donatien 0:8e01dca41002 5 * Redistribution and use in source and binary forms, with or without modification,
donatien 0:8e01dca41002 6 * are permitted provided that the following conditions are met:
donatien 0:8e01dca41002 7 *
donatien 0:8e01dca41002 8 * 1. Redistributions of source code must retain the above copyright notice,
donatien 0:8e01dca41002 9 * this list of conditions and the following disclaimer.
donatien 0:8e01dca41002 10 * 2. Redistributions in binary form must reproduce the above copyright notice,
donatien 0:8e01dca41002 11 * this list of conditions and the following disclaimer in the documentation
donatien 0:8e01dca41002 12 * and/or other materials provided with the distribution.
donatien 0:8e01dca41002 13 * 3. The name of the author may not be used to endorse or promote products
donatien 0:8e01dca41002 14 * derived from this software without specific prior written permission.
donatien 0:8e01dca41002 15 *
donatien 0:8e01dca41002 16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
donatien 0:8e01dca41002 17 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
donatien 0:8e01dca41002 18 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
donatien 0:8e01dca41002 19 * SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
donatien 0:8e01dca41002 20 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
donatien 0:8e01dca41002 21 * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
donatien 0:8e01dca41002 22 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
donatien 0:8e01dca41002 23 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
donatien 0:8e01dca41002 24 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
donatien 0:8e01dca41002 25 * OF SUCH DAMAGE.
donatien 0:8e01dca41002 26 *
donatien 0:8e01dca41002 27 * This file is part of the lwIP TCP/IP stack.
donatien 0:8e01dca41002 28 *
donatien 0:8e01dca41002 29 * Author: Adam Dunkels <adam@sics.se>
donatien 0:8e01dca41002 30 *
donatien 0:8e01dca41002 31 */
donatien 0:8e01dca41002 32 #ifndef __LWIP_INET_H__
donatien 0:8e01dca41002 33 #define __LWIP_INET_H__
donatien 0:8e01dca41002 34
donatien 0:8e01dca41002 35 #include "lwip/opt.h"
donatien 0:8e01dca41002 36 #include "lwip/def.h"
donatien 0:8e01dca41002 37 #include "lwip/ip_addr.h"
donatien 0:8e01dca41002 38
donatien 0:8e01dca41002 39 #ifdef __cplusplus
donatien 0:8e01dca41002 40 extern "C" {
donatien 0:8e01dca41002 41 #endif
donatien 0:8e01dca41002 42
donatien 0:8e01dca41002 43 /** For compatibility with BSD code */
donatien 0:8e01dca41002 44 struct in_addr {
donatien 0:8e01dca41002 45 u32_t s_addr;
donatien 0:8e01dca41002 46 };
donatien 0:8e01dca41002 47
donatien 0:8e01dca41002 48 /** 255.255.255.255 */
donatien 0:8e01dca41002 49 #define INADDR_NONE IPADDR_NONE
donatien 0:8e01dca41002 50 /** 127.0.0.1 */
donatien 0:8e01dca41002 51 #define INADDR_LOOPBACK IPADDR_LOOPBACK
donatien 0:8e01dca41002 52 /** 0.0.0.0 */
donatien 0:8e01dca41002 53 #define INADDR_ANY IPADDR_ANY
donatien 0:8e01dca41002 54 /** 255.255.255.255 */
donatien 0:8e01dca41002 55 #define INADDR_BROADCAST IPADDR_BROADCAST
donatien 0:8e01dca41002 56
donatien 0:8e01dca41002 57 /* Definitions of the bits in an Internet address integer.
donatien 0:8e01dca41002 58
donatien 0:8e01dca41002 59 On subnets, host and network parts are found according to
donatien 0:8e01dca41002 60 the subnet mask, not these masks. */
donatien 0:8e01dca41002 61 #define IN_CLASSA(a) IP_CLASSA(a)
donatien 0:8e01dca41002 62 #define IN_CLASSA_NET IP_CLASSA_NET
donatien 0:8e01dca41002 63 #define IN_CLASSA_NSHIFT IP_CLASSA_NSHIFT
donatien 0:8e01dca41002 64 #define IN_CLASSA_HOST IP_CLASSA_HOST
donatien 0:8e01dca41002 65 #define IN_CLASSA_MAX IP_CLASSA_MAX
donatien 0:8e01dca41002 66
donatien 0:8e01dca41002 67 #define IN_CLASSB(b) IP_CLASSB(b)
donatien 0:8e01dca41002 68 #define IN_CLASSB_NET IP_CLASSB_NET
donatien 0:8e01dca41002 69 #define IN_CLASSB_NSHIFT IP_CLASSB_NSHIFT
donatien 0:8e01dca41002 70 #define IN_CLASSB_HOST IP_CLASSB_HOST
donatien 0:8e01dca41002 71 #define IN_CLASSB_MAX IP_CLASSB_MAX
donatien 0:8e01dca41002 72
donatien 0:8e01dca41002 73 #define IN_CLASSC(c) IP_CLASSC(c)
donatien 0:8e01dca41002 74 #define IN_CLASSC_NET IP_CLASSC_NET
donatien 0:8e01dca41002 75 #define IN_CLASSC_NSHIFT IP_CLASSC_NSHIFT
donatien 0:8e01dca41002 76 #define IN_CLASSC_HOST IP_CLASSC_HOST
donatien 0:8e01dca41002 77 #define IN_CLASSC_MAX IP_CLASSC_MAX
donatien 0:8e01dca41002 78
donatien 0:8e01dca41002 79 #define IN_CLASSD(d) IP_CLASSD(d)
donatien 0:8e01dca41002 80 #define IN_CLASSD_NET IP_CLASSD_NET /* These ones aren't really */
donatien 0:8e01dca41002 81 #define IN_CLASSD_NSHIFT IP_CLASSD_NSHIFT /* net and host fields, but */
donatien 0:8e01dca41002 82 #define IN_CLASSD_HOST IP_CLASSD_HOST /* routing needn't know. */
donatien 0:8e01dca41002 83 #define IN_CLASSD_MAX IP_CLASSD_MAX
donatien 0:8e01dca41002 84
donatien 0:8e01dca41002 85 #define IN_MULTICAST(a) IP_MULTICAST(a)
donatien 0:8e01dca41002 86
donatien 0:8e01dca41002 87 #define IN_EXPERIMENTAL(a) IP_EXPERIMENTAL(a)
donatien 0:8e01dca41002 88 #define IN_BADCLASS(a) IP_BADCLASS(a)
donatien 0:8e01dca41002 89
donatien 0:8e01dca41002 90 #define IN_LOOPBACKNET IP_LOOPBACKNET
donatien 0:8e01dca41002 91
donatien 0:8e01dca41002 92 #define inet_addr_from_ipaddr(target_inaddr, source_ipaddr) ((target_inaddr)->s_addr = ip4_addr_get_u32(source_ipaddr))
donatien 0:8e01dca41002 93 #define inet_addr_to_ipaddr(target_ipaddr, source_inaddr) (ip4_addr_set_u32(target_ipaddr, (source_inaddr)->s_addr))
donatien 0:8e01dca41002 94 /* ATTENTION: the next define only works because both s_addr and ip_addr_t are an u32_t effectively! */
donatien 0:8e01dca41002 95 #define inet_addr_to_ipaddr_p(target_ipaddr_p, source_inaddr) ((target_ipaddr_p) = (ip_addr_t*)&((source_inaddr)->s_addr))
donatien 0:8e01dca41002 96
donatien 0:8e01dca41002 97 /* directly map this to the lwip internal functions */
donatien 0:8e01dca41002 98 #define inet_addr(cp) ipaddr_addr(cp)
donatien 0:8e01dca41002 99 #define inet_aton(cp, addr) ipaddr_aton(cp, (ip_addr_t*)addr)
donatien 0:8e01dca41002 100 #define inet_ntoa(addr) ipaddr_ntoa((ip_addr_t*)&(addr))
donatien 0:8e01dca41002 101 #define inet_ntoa_r(addr, buf, buflen) ipaddr_ntoa_r((ip_addr_t*)&(addr), buf, buflen)
donatien 0:8e01dca41002 102
donatien 0:8e01dca41002 103 #ifdef __cplusplus
donatien 0:8e01dca41002 104 }
donatien 0:8e01dca41002 105 #endif
donatien 0:8e01dca41002 106
donatien 0:8e01dca41002 107 #endif /* __LWIP_INET_H__ */