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 * chpms.h - Network Microsoft Challenge Handshake Protocol header file.
shintamainjp 0:521ba375aa0f 3 *
shintamainjp 0:521ba375aa0f 4 * Copyright (c) 2003 by Marc Boucher, Services Informatiques (MBSI) inc.
shintamainjp 0:521ba375aa0f 5 * portions Copyright (c) 1998 Global Election Systems Inc.
shintamainjp 0:521ba375aa0f 6 *
shintamainjp 0:521ba375aa0f 7 * The authors hereby grant permission to use, copy, modify, distribute,
shintamainjp 0:521ba375aa0f 8 * and license this software and its documentation for any purpose, provided
shintamainjp 0:521ba375aa0f 9 * that existing copyright notices are retained in all copies and that this
shintamainjp 0:521ba375aa0f 10 * notice and the following disclaimer are included verbatim in any
shintamainjp 0:521ba375aa0f 11 * distributions. No written agreement, license, or royalty fee is required
shintamainjp 0:521ba375aa0f 12 * for any of the authorized uses.
shintamainjp 0:521ba375aa0f 13 *
shintamainjp 0:521ba375aa0f 14 * THIS SOFTWARE IS PROVIDED BY THE CONTRIBUTORS *AS IS* AND ANY EXPRESS OR
shintamainjp 0:521ba375aa0f 15 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
shintamainjp 0:521ba375aa0f 16 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
shintamainjp 0:521ba375aa0f 17 * IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
shintamainjp 0:521ba375aa0f 18 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
shintamainjp 0:521ba375aa0f 19 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
shintamainjp 0:521ba375aa0f 20 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
shintamainjp 0:521ba375aa0f 21 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
shintamainjp 0:521ba375aa0f 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
shintamainjp 0:521ba375aa0f 23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
shintamainjp 0:521ba375aa0f 24 *
shintamainjp 0:521ba375aa0f 25 ******************************************************************************
shintamainjp 0:521ba375aa0f 26 * REVISION HISTORY
shintamainjp 0:521ba375aa0f 27 *
shintamainjp 0:521ba375aa0f 28 * 03-01-01 Marc Boucher <marc@mbsi.ca>
shintamainjp 0:521ba375aa0f 29 * Ported to lwIP.
shintamainjp 0:521ba375aa0f 30 * 98-01-30 Guy Lancaster <lancasterg@acm.org>, Global Election Systems Inc.
shintamainjp 0:521ba375aa0f 31 * Original built from BSD network code.
shintamainjp 0:521ba375aa0f 32 ******************************************************************************/
shintamainjp 0:521ba375aa0f 33 /*
shintamainjp 0:521ba375aa0f 34 * chap.h - Challenge Handshake Authentication Protocol definitions.
shintamainjp 0:521ba375aa0f 35 *
shintamainjp 0:521ba375aa0f 36 * Copyright (c) 1995 Eric Rosenquist, Strata Software Limited.
shintamainjp 0:521ba375aa0f 37 * http://www.strataware.com/
shintamainjp 0:521ba375aa0f 38 *
shintamainjp 0:521ba375aa0f 39 * All rights reserved.
shintamainjp 0:521ba375aa0f 40 *
shintamainjp 0:521ba375aa0f 41 * Redistribution and use in source and binary forms are permitted
shintamainjp 0:521ba375aa0f 42 * provided that the above copyright notice and this paragraph are
shintamainjp 0:521ba375aa0f 43 * duplicated in all such forms and that any documentation,
shintamainjp 0:521ba375aa0f 44 * advertising materials, and other materials related to such
shintamainjp 0:521ba375aa0f 45 * distribution and use acknowledge that the software was developed
shintamainjp 0:521ba375aa0f 46 * by Eric Rosenquist. The name of the author may not be used to
shintamainjp 0:521ba375aa0f 47 * endorse or promote products derived from this software without
shintamainjp 0:521ba375aa0f 48 * specific prior written permission.
shintamainjp 0:521ba375aa0f 49 *
shintamainjp 0:521ba375aa0f 50 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
shintamainjp 0:521ba375aa0f 51 * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
shintamainjp 0:521ba375aa0f 52 * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
shintamainjp 0:521ba375aa0f 53 *
shintamainjp 0:521ba375aa0f 54 * $Id: chpms.h,v 1.5 2007/12/19 20:47:23 fbernon Exp $
shintamainjp 0:521ba375aa0f 55 */
shintamainjp 0:521ba375aa0f 56
shintamainjp 0:521ba375aa0f 57 #ifndef CHPMS_H
shintamainjp 0:521ba375aa0f 58 #define CHPMS_H
shintamainjp 0:521ba375aa0f 59
shintamainjp 0:521ba375aa0f 60 #define MAX_NT_PASSWORD 256 /* Maximum number of (Unicode) chars in an NT password */
shintamainjp 0:521ba375aa0f 61
shintamainjp 0:521ba375aa0f 62 void ChapMS (chap_state *, char *, int, char *, int);
shintamainjp 0:521ba375aa0f 63
shintamainjp 0:521ba375aa0f 64 #endif /* CHPMS_H */