Hi. This is the feed program for Cosm. (The previous name of the services is Pachube.)

Dependencies:   mbed ThermistorPack Pachube ConfigFile EthernetNetIf TextLCD HTTPClient_ToBeRemoved FatFileSystem SDFileSystem

Committer:
shintamainjp
Date:
Mon Aug 06 12:37:59 2012 +0000
Revision:
0:521ba375aa0f
Pachube renamed to Cosm.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
shintamainjp 0:521ba375aa0f 1 /*
shintamainjp 0:521ba375aa0f 2 * Copyright (c) 2001-2004 Swedish Institute of Computer Science.
shintamainjp 0:521ba375aa0f 3 * All rights reserved.
shintamainjp 0:521ba375aa0f 4 *
shintamainjp 0:521ba375aa0f 5 * Redistribution and use in source and binary forms, with or without modification,
shintamainjp 0:521ba375aa0f 6 * are permitted provided that the following conditions are met:
shintamainjp 0:521ba375aa0f 7 *
shintamainjp 0:521ba375aa0f 8 * 1. Redistributions of source code must retain the above copyright notice,
shintamainjp 0:521ba375aa0f 9 * this list of conditions and the following disclaimer.
shintamainjp 0:521ba375aa0f 10 * 2. Redistributions in binary form must reproduce the above copyright notice,
shintamainjp 0:521ba375aa0f 11 * this list of conditions and the following disclaimer in the documentation
shintamainjp 0:521ba375aa0f 12 * and/or other materials provided with the distribution.
shintamainjp 0:521ba375aa0f 13 * 3. The name of the author may not be used to endorse or promote products
shintamainjp 0:521ba375aa0f 14 * derived from this software without specific prior written permission.
shintamainjp 0:521ba375aa0f 15 *
shintamainjp 0:521ba375aa0f 16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
shintamainjp 0:521ba375aa0f 17 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
shintamainjp 0:521ba375aa0f 18 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
shintamainjp 0:521ba375aa0f 19 * SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
shintamainjp 0:521ba375aa0f 20 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
shintamainjp 0:521ba375aa0f 21 * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
shintamainjp 0:521ba375aa0f 22 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
shintamainjp 0:521ba375aa0f 23 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
shintamainjp 0:521ba375aa0f 24 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
shintamainjp 0:521ba375aa0f 25 * OF SUCH DAMAGE.
shintamainjp 0:521ba375aa0f 26 *
shintamainjp 0:521ba375aa0f 27 * This file is part of the lwIP TCP/IP stack.
shintamainjp 0:521ba375aa0f 28 *
shintamainjp 0:521ba375aa0f 29 * Author: Jani Monoses <jani@iv.ro>
shintamainjp 0:521ba375aa0f 30 *
shintamainjp 0:521ba375aa0f 31 */
shintamainjp 0:521ba375aa0f 32
shintamainjp 0:521ba375aa0f 33 #ifndef __LWIP_IP_FRAG_H__
shintamainjp 0:521ba375aa0f 34 #define __LWIP_IP_FRAG_H__
shintamainjp 0:521ba375aa0f 35
shintamainjp 0:521ba375aa0f 36 #include "lwip/opt.h"
shintamainjp 0:521ba375aa0f 37 #include "lwip/err.h"
shintamainjp 0:521ba375aa0f 38 #include "lwip/pbuf.h"
shintamainjp 0:521ba375aa0f 39 #include "lwip/netif.h"
shintamainjp 0:521ba375aa0f 40 #include "lwip/ip_addr.h"
shintamainjp 0:521ba375aa0f 41 #include "lwip/ip.h"
shintamainjp 0:521ba375aa0f 42
shintamainjp 0:521ba375aa0f 43 #ifdef __cplusplus
shintamainjp 0:521ba375aa0f 44 extern "C" {
shintamainjp 0:521ba375aa0f 45 #endif
shintamainjp 0:521ba375aa0f 46
shintamainjp 0:521ba375aa0f 47 #if IP_REASSEMBLY
shintamainjp 0:521ba375aa0f 48 /* The IP reassembly timer interval in milliseconds. */
shintamainjp 0:521ba375aa0f 49 #define IP_TMR_INTERVAL 1000
shintamainjp 0:521ba375aa0f 50
shintamainjp 0:521ba375aa0f 51 /* IP reassembly helper struct.
shintamainjp 0:521ba375aa0f 52 * This is exported because memp needs to know the size.
shintamainjp 0:521ba375aa0f 53 */
shintamainjp 0:521ba375aa0f 54 struct ip_reassdata {
shintamainjp 0:521ba375aa0f 55 struct ip_reassdata *next;
shintamainjp 0:521ba375aa0f 56 struct pbuf *p;
shintamainjp 0:521ba375aa0f 57 struct ip_hdr iphdr;
shintamainjp 0:521ba375aa0f 58 u16_t datagram_len;
shintamainjp 0:521ba375aa0f 59 u8_t flags;
shintamainjp 0:521ba375aa0f 60 u8_t timer;
shintamainjp 0:521ba375aa0f 61 };
shintamainjp 0:521ba375aa0f 62
shintamainjp 0:521ba375aa0f 63 void ip_reass_init(void);
shintamainjp 0:521ba375aa0f 64 void ip_reass_tmr(void);
shintamainjp 0:521ba375aa0f 65 struct pbuf * ip_reass(struct pbuf *p);
shintamainjp 0:521ba375aa0f 66 #endif /* IP_REASSEMBLY */
shintamainjp 0:521ba375aa0f 67
shintamainjp 0:521ba375aa0f 68 #if IP_FRAG
shintamainjp 0:521ba375aa0f 69 #if !IP_FRAG_USES_STATIC_BUF && !LWIP_NETIF_TX_SINGLE_PBUF
shintamainjp 0:521ba375aa0f 70 /** A custom pbuf that holds a reference to another pbuf, which is freed
shintamainjp 0:521ba375aa0f 71 * when this custom pbuf is freed. This is used to create a custom PBUF_REF
shintamainjp 0:521ba375aa0f 72 * that points into the original pbuf. */
shintamainjp 0:521ba375aa0f 73 struct pbuf_custom_ref {
shintamainjp 0:521ba375aa0f 74 /** 'base class' */
shintamainjp 0:521ba375aa0f 75 struct pbuf_custom pc;
shintamainjp 0:521ba375aa0f 76 /** pointer to the original pbuf that is referenced */
shintamainjp 0:521ba375aa0f 77 struct pbuf *original;
shintamainjp 0:521ba375aa0f 78 };
shintamainjp 0:521ba375aa0f 79 #endif /* !IP_FRAG_USES_STATIC_BUF && !LWIP_NETIF_TX_SINGLE_PBUF */
shintamainjp 0:521ba375aa0f 80
shintamainjp 0:521ba375aa0f 81 err_t ip_frag(struct pbuf *p, struct netif *netif, ip_addr_t *dest);
shintamainjp 0:521ba375aa0f 82 #endif /* IP_FRAG */
shintamainjp 0:521ba375aa0f 83
shintamainjp 0:521ba375aa0f 84 #ifdef __cplusplus
shintamainjp 0:521ba375aa0f 85 }
shintamainjp 0:521ba375aa0f 86 #endif
shintamainjp 0:521ba375aa0f 87
shintamainjp 0:521ba375aa0f 88 #endif /* __LWIP_IP_FRAG_H__ */