Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: FatFileSystem mbed WeatherMeters SDFileSystem
NetStack/lwip/core/ipv4/inet.c@1:c7958aa34fa1, 2012-02-25 (annotated)
- Committer:
- AdamGreen
- Date:
- Sat Feb 25 03:28:05 2012 +0000
- Revision:
- 1:c7958aa34fa1
- Parent:
- 0:616601bde9fb
Use published libraries where possible.
Who changed what in which revision?
| User | Revision | Line number | New contents of line | 
|---|---|---|---|
| AdamGreen | 0:616601bde9fb | 1 | /** | 
| AdamGreen | 0:616601bde9fb | 2 | * @file | 
| AdamGreen | 0:616601bde9fb | 3 | * Functions common to all TCP/IPv4 modules, such as the byte order functions. | 
| AdamGreen | 0:616601bde9fb | 4 | * | 
| AdamGreen | 0:616601bde9fb | 5 | */ | 
| AdamGreen | 0:616601bde9fb | 6 | |
| AdamGreen | 0:616601bde9fb | 7 | /* | 
| AdamGreen | 0:616601bde9fb | 8 | * Copyright (c) 2001-2004 Swedish Institute of Computer Science. | 
| AdamGreen | 0:616601bde9fb | 9 | * All rights reserved. | 
| AdamGreen | 0:616601bde9fb | 10 | * | 
| AdamGreen | 0:616601bde9fb | 11 | * Redistribution and use in source and binary forms, with or without modification, | 
| AdamGreen | 0:616601bde9fb | 12 | * are permitted provided that the following conditions are met: | 
| AdamGreen | 0:616601bde9fb | 13 | * | 
| AdamGreen | 0:616601bde9fb | 14 | * 1. Redistributions of source code must retain the above copyright notice, | 
| AdamGreen | 0:616601bde9fb | 15 | * this list of conditions and the following disclaimer. | 
| AdamGreen | 0:616601bde9fb | 16 | * 2. Redistributions in binary form must reproduce the above copyright notice, | 
| AdamGreen | 0:616601bde9fb | 17 | * this list of conditions and the following disclaimer in the documentation | 
| AdamGreen | 0:616601bde9fb | 18 | * and/or other materials provided with the distribution. | 
| AdamGreen | 0:616601bde9fb | 19 | * 3. The name of the author may not be used to endorse or promote products | 
| AdamGreen | 0:616601bde9fb | 20 | * derived from this software without specific prior written permission. | 
| AdamGreen | 0:616601bde9fb | 21 | * | 
| AdamGreen | 0:616601bde9fb | 22 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED | 
| AdamGreen | 0:616601bde9fb | 23 | * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF | 
| AdamGreen | 0:616601bde9fb | 24 | * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT | 
| AdamGreen | 0:616601bde9fb | 25 | * SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, | 
| AdamGreen | 0:616601bde9fb | 26 | * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT | 
| AdamGreen | 0:616601bde9fb | 27 | * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | 
| AdamGreen | 0:616601bde9fb | 28 | * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN | 
| AdamGreen | 0:616601bde9fb | 29 | * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING | 
| AdamGreen | 0:616601bde9fb | 30 | * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY | 
| AdamGreen | 0:616601bde9fb | 31 | * OF SUCH DAMAGE. | 
| AdamGreen | 0:616601bde9fb | 32 | * | 
| AdamGreen | 0:616601bde9fb | 33 | * This file is part of the lwIP TCP/IP stack. | 
| AdamGreen | 0:616601bde9fb | 34 | * | 
| AdamGreen | 0:616601bde9fb | 35 | * Author: Adam Dunkels <adam@sics.se> | 
| AdamGreen | 0:616601bde9fb | 36 | * | 
| AdamGreen | 0:616601bde9fb | 37 | */ | 
| AdamGreen | 0:616601bde9fb | 38 | |
| AdamGreen | 0:616601bde9fb | 39 | #include "lwip/opt.h" | 
| AdamGreen | 0:616601bde9fb | 40 | |
| AdamGreen | 0:616601bde9fb | 41 | #include "lwip/inet.h" | 
| AdamGreen | 0:616601bde9fb | 42 |