uIP 1.0 based webserver for LPC1114 + ENC28J60

Dependencies:   mbed TMP102

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers uiplib.h Source File

uiplib.h

Go to the documentation of this file.
00001 /**
00002  * \file
00003  * Various uIP library functions.
00004  * \author
00005  * Adam Dunkels <adam@sics.se>
00006  *
00007  */
00008 
00009 /*
00010  * Copyright (c) 2002, Adam Dunkels.
00011  * All rights reserved.
00012  *
00013  * Redistribution and use in source and binary forms, with or without
00014  * modification, are permitted provided that the following conditions
00015  * are met:
00016  * 1. Redistributions of source code must retain the above copyright
00017  *    notice, this list of conditions and the following disclaimer.
00018  * 2. Redistributions in binary form must reproduce the above
00019  *    copyright notice, this list of conditions and the following
00020  *    disclaimer in the documentation and/or other materials provided
00021  *    with the distribution.
00022  * 3. The name of the author may not be used to endorse or promote
00023  *    products derived from this software without specific prior
00024  *    written permission.
00025  *
00026  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
00027  * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
00028  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
00029  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
00030  * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
00031  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
00032  * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
00033  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
00034  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
00035  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
00036  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
00037  *
00038  * This file is part of the uIP TCP/IP stack
00039  *
00040  * $Id: uiplib.h,v 1.1 2006/06/07 09:15:19 adam Exp $
00041  *
00042  */
00043 #ifndef __UIPLIB_H__
00044 #define __UIPLIB_H__
00045 
00046 /**
00047  * \addtogroup uipconvfunc
00048  * @{
00049  */
00050 
00051 /**
00052  * Convert a textual representation of an IP address to a numerical representation.
00053  *
00054  * This function takes a textual representation of an IP address in
00055  * the form a.b.c.d and converts it into a 4-byte array that can be
00056  * used by other uIP functions.
00057  *
00058  * \param addrstr A pointer to a string containing the IP address in
00059  * textual form.
00060  *
00061  * \param addr A pointer to a 4-byte array that will be filled in with
00062  * the numerical representation of the address.
00063  *
00064  * \retval 0 If the IP address could not be parsed.
00065  * \retval Non-zero If the IP address was parsed.
00066  */
00067 unsigned char uiplib_ipaddrconv(char *addrstr, unsigned char *addr);
00068 
00069 /** @} */
00070 
00071 #endif /* __UIPLIB_H__ */