Modified version of NetServices. Fixes an issue where connections failed should the HTTP response status line be received in a packet on its own prior to any further headers. Changes are made to the HTTPClient.cpp file's readHeaders method.

Committer:
andrewbonney
Date:
Fri Apr 08 14:39:41 2011 +0000
Revision:
0:ec559500a63f

        

Who changed what in which revision?

UserRevisionLine numberNew contents of line
andrewbonney 0:ec559500a63f 1 /*****************************************************************************
andrewbonney 0:ec559500a63f 2 * pppdebug.h - System debugging utilities.
andrewbonney 0:ec559500a63f 3 *
andrewbonney 0:ec559500a63f 4 * Copyright (c) 2003 by Marc Boucher, Services Informatiques (MBSI) inc.
andrewbonney 0:ec559500a63f 5 * portions Copyright (c) 1998 Global Election Systems Inc.
andrewbonney 0:ec559500a63f 6 * portions Copyright (c) 2001 by Cognizant Pty Ltd.
andrewbonney 0:ec559500a63f 7 *
andrewbonney 0:ec559500a63f 8 * The authors hereby grant permission to use, copy, modify, distribute,
andrewbonney 0:ec559500a63f 9 * and license this software and its documentation for any purpose, provided
andrewbonney 0:ec559500a63f 10 * that existing copyright notices are retained in all copies and that this
andrewbonney 0:ec559500a63f 11 * notice and the following disclaimer are included verbatim in any
andrewbonney 0:ec559500a63f 12 * distributions. No written agreement, license, or royalty fee is required
andrewbonney 0:ec559500a63f 13 * for any of the authorized uses.
andrewbonney 0:ec559500a63f 14 *
andrewbonney 0:ec559500a63f 15 * THIS SOFTWARE IS PROVIDED BY THE CONTRIBUTORS *AS IS* AND ANY EXPRESS OR
andrewbonney 0:ec559500a63f 16 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
andrewbonney 0:ec559500a63f 17 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
andrewbonney 0:ec559500a63f 18 * IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
andrewbonney 0:ec559500a63f 19 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
andrewbonney 0:ec559500a63f 20 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
andrewbonney 0:ec559500a63f 21 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
andrewbonney 0:ec559500a63f 22 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
andrewbonney 0:ec559500a63f 23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
andrewbonney 0:ec559500a63f 24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
andrewbonney 0:ec559500a63f 25 *
andrewbonney 0:ec559500a63f 26 ******************************************************************************
andrewbonney 0:ec559500a63f 27 * REVISION HISTORY (please don't use tabs!)
andrewbonney 0:ec559500a63f 28 *
andrewbonney 0:ec559500a63f 29 * 03-01-01 Marc Boucher <marc@mbsi.ca>
andrewbonney 0:ec559500a63f 30 * Ported to lwIP.
andrewbonney 0:ec559500a63f 31 * 98-07-29 Guy Lancaster <lancasterg@acm.org>, Global Election Systems Inc.
andrewbonney 0:ec559500a63f 32 * Original.
andrewbonney 0:ec559500a63f 33 *
andrewbonney 0:ec559500a63f 34 *****************************************************************************
andrewbonney 0:ec559500a63f 35 */
andrewbonney 0:ec559500a63f 36 #ifndef PPPDEBUG_H
andrewbonney 0:ec559500a63f 37 #define PPPDEBUG_H
andrewbonney 0:ec559500a63f 38
andrewbonney 0:ec559500a63f 39 /* Trace levels. */
andrewbonney 0:ec559500a63f 40 #define LOG_CRITICAL (PPP_DEBUG | LWIP_DBG_LEVEL_SEVERE)
andrewbonney 0:ec559500a63f 41 #define LOG_ERR (PPP_DEBUG | LWIP_DBG_LEVEL_SEVERE)
andrewbonney 0:ec559500a63f 42 #define LOG_NOTICE (PPP_DEBUG | LWIP_DBG_LEVEL_WARNING)
andrewbonney 0:ec559500a63f 43 #define LOG_WARNING (PPP_DEBUG | LWIP_DBG_LEVEL_WARNING)
andrewbonney 0:ec559500a63f 44 #define LOG_INFO (PPP_DEBUG)
andrewbonney 0:ec559500a63f 45 #define LOG_DETAIL (PPP_DEBUG)
andrewbonney 0:ec559500a63f 46 #define LOG_DEBUG (PPP_DEBUG)
andrewbonney 0:ec559500a63f 47
andrewbonney 0:ec559500a63f 48
andrewbonney 0:ec559500a63f 49 #define TRACELCP PPP_DEBUG
andrewbonney 0:ec559500a63f 50
andrewbonney 0:ec559500a63f 51 #if PPP_DEBUG
andrewbonney 0:ec559500a63f 52
andrewbonney 0:ec559500a63f 53 #define AUTHDEBUG(a, b) LWIP_DEBUGF(a, b)
andrewbonney 0:ec559500a63f 54 #define IPCPDEBUG(a, b) LWIP_DEBUGF(a, b)
andrewbonney 0:ec559500a63f 55 #define UPAPDEBUG(a, b) LWIP_DEBUGF(a, b)
andrewbonney 0:ec559500a63f 56 #define LCPDEBUG(a, b) LWIP_DEBUGF(a, b)
andrewbonney 0:ec559500a63f 57 #define FSMDEBUG(a, b) LWIP_DEBUGF(a, b)
andrewbonney 0:ec559500a63f 58 #define CHAPDEBUG(a, b) LWIP_DEBUGF(a, b)
andrewbonney 0:ec559500a63f 59 #define PPPDEBUG(a, b) LWIP_DEBUGF(a, b)
andrewbonney 0:ec559500a63f 60
andrewbonney 0:ec559500a63f 61 #else /* PPP_DEBUG */
andrewbonney 0:ec559500a63f 62
andrewbonney 0:ec559500a63f 63 #define AUTHDEBUG(a, b)
andrewbonney 0:ec559500a63f 64 #define IPCPDEBUG(a, b)
andrewbonney 0:ec559500a63f 65 #define UPAPDEBUG(a, b)
andrewbonney 0:ec559500a63f 66 #define LCPDEBUG(a, b)
andrewbonney 0:ec559500a63f 67 #define FSMDEBUG(a, b)
andrewbonney 0:ec559500a63f 68 #define CHAPDEBUG(a, b)
andrewbonney 0:ec559500a63f 69 #define PPPDEBUG(a, b)
andrewbonney 0:ec559500a63f 70
andrewbonney 0:ec559500a63f 71 #endif /* PPP_DEBUG */
andrewbonney 0:ec559500a63f 72
andrewbonney 0:ec559500a63f 73 #endif /* PPPDEBUG_H */