uIP 1.0 based webserver for LPC1114 + ENC28J60

Dependencies:   mbed TMP102

Committer:
ban4jp
Date:
Sat Jun 14 16:02:21 2014 +0000
Revision:
0:685224d2f66d
Child:
3:a2715e9c7737
initial commit.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
ban4jp 0:685224d2f66d 1 /*
ban4jp 0:685224d2f66d 2 * Copyright (c) 2006, Swedish Institute of Computer Science.
ban4jp 0:685224d2f66d 3 * All rights reserved.
ban4jp 0:685224d2f66d 4 *
ban4jp 0:685224d2f66d 5 * Redistribution and use in source and binary forms, with or without
ban4jp 0:685224d2f66d 6 * modification, are permitted provided that the following conditions
ban4jp 0:685224d2f66d 7 * are met:
ban4jp 0:685224d2f66d 8 * 1. Redistributions of source code must retain the above copyright
ban4jp 0:685224d2f66d 9 * notice, this list of conditions and the following disclaimer.
ban4jp 0:685224d2f66d 10 * 2. Redistributions in binary form must reproduce the above copyright
ban4jp 0:685224d2f66d 11 * notice, this list of conditions and the following disclaimer in the
ban4jp 0:685224d2f66d 12 * documentation and/or other materials provided with the distribution.
ban4jp 0:685224d2f66d 13 * 3. Neither the name of the Institute nor the names of its contributors
ban4jp 0:685224d2f66d 14 * may be used to endorse or promote products derived from this software
ban4jp 0:685224d2f66d 15 * without specific prior written permission.
ban4jp 0:685224d2f66d 16 *
ban4jp 0:685224d2f66d 17 * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
ban4jp 0:685224d2f66d 18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
ban4jp 0:685224d2f66d 19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ban4jp 0:685224d2f66d 20 * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
ban4jp 0:685224d2f66d 21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
ban4jp 0:685224d2f66d 22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
ban4jp 0:685224d2f66d 23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
ban4jp 0:685224d2f66d 24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
ban4jp 0:685224d2f66d 25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
ban4jp 0:685224d2f66d 26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
ban4jp 0:685224d2f66d 27 * SUCH DAMAGE.
ban4jp 0:685224d2f66d 28 *
ban4jp 0:685224d2f66d 29 * This file is part of the uIP TCP/IP stack
ban4jp 0:685224d2f66d 30 *
ban4jp 0:685224d2f66d 31 * $Id: uip-neighbor.h,v 1.2 2006/06/12 08:00:30 adam Exp $
ban4jp 0:685224d2f66d 32 */
ban4jp 0:685224d2f66d 33
ban4jp 0:685224d2f66d 34 /**
ban4jp 0:685224d2f66d 35 * \file
ban4jp 0:685224d2f66d 36 * Header file for database of link-local neighbors, used by
ban4jp 0:685224d2f66d 37 * IPv6 code and to be used by future ARP code.
ban4jp 0:685224d2f66d 38 * \author
ban4jp 0:685224d2f66d 39 * Adam Dunkels <adam@sics.se>
ban4jp 0:685224d2f66d 40 */
ban4jp 0:685224d2f66d 41
ban4jp 0:685224d2f66d 42 #ifndef __UIP_NEIGHBOR_H__
ban4jp 0:685224d2f66d 43 #define __UIP_NEIGHBOR_H__
ban4jp 0:685224d2f66d 44
ban4jp 0:685224d2f66d 45 #include "uip.h"
ban4jp 0:685224d2f66d 46
ban4jp 0:685224d2f66d 47 struct uip_neighbor_addr {
ban4jp 0:685224d2f66d 48 #if UIP_NEIGHBOR_CONF_ADDRTYPE
ban4jp 0:685224d2f66d 49 UIP_NEIGHBOR_CONF_ADDRTYPE addr;
ban4jp 0:685224d2f66d 50 #else
ban4jp 0:685224d2f66d 51 struct uip_eth_addr addr;
ban4jp 0:685224d2f66d 52 #endif
ban4jp 0:685224d2f66d 53 };
ban4jp 0:685224d2f66d 54
ban4jp 0:685224d2f66d 55 void uip_neighbor_init(void);
ban4jp 0:685224d2f66d 56 void uip_neighbor_add(uip_ipaddr_t ipaddr, struct uip_neighbor_addr *addr);
ban4jp 0:685224d2f66d 57 void uip_neighbor_update(uip_ipaddr_t ipaddr);
ban4jp 0:685224d2f66d 58 struct uip_neighbor_addr *uip_neighbor_lookup(uip_ipaddr_t ipaddr);
ban4jp 0:685224d2f66d 59 void uip_neighbor_periodic(void);
ban4jp 0:685224d2f66d 60
ban4jp 0:685224d2f66d 61 #endif /* __UIP-NEIGHBOR_H__ */