uIP 1.0 based webserver for LPC1114 + ENC28J60

Dependencies:   mbed TMP102

Committer:
ban4jp
Date:
Mon Jun 30 16:00:08 2014 +0000
Revision:
3:a2715e9c7737
Parent:
0:685224d2f66d
backported from Contiki 2.7

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 3:a2715e9c7737 29 * This file is part of the Contiki operating system.
ban4jp 0:685224d2f66d 30 *
ban4jp 0:685224d2f66d 31 */
ban4jp 0:685224d2f66d 32
ban4jp 0:685224d2f66d 33 /**
ban4jp 0:685224d2f66d 34 * \file
ban4jp 0:685224d2f66d 35 * Header file for database of link-local neighbors, used by
ban4jp 0:685224d2f66d 36 * IPv6 code and to be used by future ARP code.
ban4jp 0:685224d2f66d 37 * \author
ban4jp 0:685224d2f66d 38 * Adam Dunkels <adam@sics.se>
ban4jp 0:685224d2f66d 39 */
ban4jp 0:685224d2f66d 40
ban4jp 0:685224d2f66d 41 #ifndef __UIP_NEIGHBOR_H__
ban4jp 0:685224d2f66d 42 #define __UIP_NEIGHBOR_H__
ban4jp 0:685224d2f66d 43
ban4jp 0:685224d2f66d 44 #include "uip.h"
ban4jp 0:685224d2f66d 45
ban4jp 0:685224d2f66d 46 struct uip_neighbor_addr {
ban4jp 0:685224d2f66d 47 #if UIP_NEIGHBOR_CONF_ADDRTYPE
ban4jp 0:685224d2f66d 48 UIP_NEIGHBOR_CONF_ADDRTYPE addr;
ban4jp 0:685224d2f66d 49 #else
ban4jp 0:685224d2f66d 50 struct uip_eth_addr addr;
ban4jp 0:685224d2f66d 51 #endif
ban4jp 0:685224d2f66d 52 };
ban4jp 0:685224d2f66d 53
ban4jp 0:685224d2f66d 54 void uip_neighbor_init(void);
ban4jp 3:a2715e9c7737 55 void uip_neighbor_add(uip_ipaddr_t *ipaddr, struct uip_neighbor_addr *addr);
ban4jp 3:a2715e9c7737 56 void uip_neighbor_update(uip_ipaddr_t *ipaddr);
ban4jp 3:a2715e9c7737 57 struct uip_neighbor_addr *uip_neighbor_lookup(uip_ipaddr_t *ipaddr);
ban4jp 0:685224d2f66d 58 void uip_neighbor_periodic(void);
ban4jp 0:685224d2f66d 59
ban4jp 0:685224d2f66d 60 #endif /* __UIP-NEIGHBOR_H__ */