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 * auth.h - PPP Authentication and phase control header file.
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 *
andrewbonney 0:ec559500a63f 7 * The authors hereby grant permission to use, copy, modify, distribute,
andrewbonney 0:ec559500a63f 8 * and license this software and its documentation for any purpose, provided
andrewbonney 0:ec559500a63f 9 * that existing copyright notices are retained in all copies and that this
andrewbonney 0:ec559500a63f 10 * notice and the following disclaimer are included verbatim in any
andrewbonney 0:ec559500a63f 11 * distributions. No written agreement, license, or royalty fee is required
andrewbonney 0:ec559500a63f 12 * for any of the authorized uses.
andrewbonney 0:ec559500a63f 13 *
andrewbonney 0:ec559500a63f 14 * THIS SOFTWARE IS PROVIDED BY THE CONTRIBUTORS *AS IS* AND ANY EXPRESS OR
andrewbonney 0:ec559500a63f 15 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
andrewbonney 0:ec559500a63f 16 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
andrewbonney 0:ec559500a63f 17 * IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
andrewbonney 0:ec559500a63f 18 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
andrewbonney 0:ec559500a63f 19 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
andrewbonney 0:ec559500a63f 20 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
andrewbonney 0:ec559500a63f 21 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
andrewbonney 0:ec559500a63f 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
andrewbonney 0:ec559500a63f 23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
andrewbonney 0:ec559500a63f 24 *
andrewbonney 0:ec559500a63f 25 ******************************************************************************
andrewbonney 0:ec559500a63f 26 * REVISION HISTORY
andrewbonney 0:ec559500a63f 27 *
andrewbonney 0:ec559500a63f 28 * 03-01-01 Marc Boucher <marc@mbsi.ca>
andrewbonney 0:ec559500a63f 29 * Ported to lwIP.
andrewbonney 0:ec559500a63f 30 * 97-12-04 Guy Lancaster <lancasterg@acm.org>, Global Election Systems Inc.
andrewbonney 0:ec559500a63f 31 * Original derived from BSD pppd.h.
andrewbonney 0:ec559500a63f 32 *****************************************************************************/
andrewbonney 0:ec559500a63f 33 /*
andrewbonney 0:ec559500a63f 34 * pppd.h - PPP daemon global declarations.
andrewbonney 0:ec559500a63f 35 *
andrewbonney 0:ec559500a63f 36 * Copyright (c) 1989 Carnegie Mellon University.
andrewbonney 0:ec559500a63f 37 * All rights reserved.
andrewbonney 0:ec559500a63f 38 *
andrewbonney 0:ec559500a63f 39 * Redistribution and use in source and binary forms are permitted
andrewbonney 0:ec559500a63f 40 * provided that the above copyright notice and this paragraph are
andrewbonney 0:ec559500a63f 41 * duplicated in all such forms and that any documentation,
andrewbonney 0:ec559500a63f 42 * advertising materials, and other materials related to such
andrewbonney 0:ec559500a63f 43 * distribution and use acknowledge that the software was developed
andrewbonney 0:ec559500a63f 44 * by Carnegie Mellon University. The name of the
andrewbonney 0:ec559500a63f 45 * University may not be used to endorse or promote products derived
andrewbonney 0:ec559500a63f 46 * from this software without specific prior written permission.
andrewbonney 0:ec559500a63f 47 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
andrewbonney 0:ec559500a63f 48 * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
andrewbonney 0:ec559500a63f 49 * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
andrewbonney 0:ec559500a63f 50 *
andrewbonney 0:ec559500a63f 51 */
andrewbonney 0:ec559500a63f 52
andrewbonney 0:ec559500a63f 53 #ifndef AUTH_H
andrewbonney 0:ec559500a63f 54 #define AUTH_H
andrewbonney 0:ec559500a63f 55
andrewbonney 0:ec559500a63f 56 /***********************
andrewbonney 0:ec559500a63f 57 *** PUBLIC FUNCTIONS ***
andrewbonney 0:ec559500a63f 58 ***********************/
andrewbonney 0:ec559500a63f 59
andrewbonney 0:ec559500a63f 60 /* we are starting to use the link */
andrewbonney 0:ec559500a63f 61 void link_required (int);
andrewbonney 0:ec559500a63f 62
andrewbonney 0:ec559500a63f 63 /* we are finished with the link */
andrewbonney 0:ec559500a63f 64 void link_terminated (int);
andrewbonney 0:ec559500a63f 65
andrewbonney 0:ec559500a63f 66 /* the LCP layer has left the Opened state */
andrewbonney 0:ec559500a63f 67 void link_down (int);
andrewbonney 0:ec559500a63f 68
andrewbonney 0:ec559500a63f 69 /* the link is up; authenticate now */
andrewbonney 0:ec559500a63f 70 void link_established (int);
andrewbonney 0:ec559500a63f 71
andrewbonney 0:ec559500a63f 72 /* a network protocol has come up */
andrewbonney 0:ec559500a63f 73 void np_up (int, u16_t);
andrewbonney 0:ec559500a63f 74
andrewbonney 0:ec559500a63f 75 /* a network protocol has gone down */
andrewbonney 0:ec559500a63f 76 void np_down (int, u16_t);
andrewbonney 0:ec559500a63f 77
andrewbonney 0:ec559500a63f 78 /* a network protocol no longer needs link */
andrewbonney 0:ec559500a63f 79 void np_finished (int, u16_t);
andrewbonney 0:ec559500a63f 80
andrewbonney 0:ec559500a63f 81 /* peer failed to authenticate itself */
andrewbonney 0:ec559500a63f 82 void auth_peer_fail (int, u16_t);
andrewbonney 0:ec559500a63f 83
andrewbonney 0:ec559500a63f 84 /* peer successfully authenticated itself */
andrewbonney 0:ec559500a63f 85 void auth_peer_success (int, u16_t, char *, int);
andrewbonney 0:ec559500a63f 86
andrewbonney 0:ec559500a63f 87 /* we failed to authenticate ourselves */
andrewbonney 0:ec559500a63f 88 void auth_withpeer_fail (int, u16_t);
andrewbonney 0:ec559500a63f 89
andrewbonney 0:ec559500a63f 90 /* we successfully authenticated ourselves */
andrewbonney 0:ec559500a63f 91 void auth_withpeer_success (int, u16_t);
andrewbonney 0:ec559500a63f 92
andrewbonney 0:ec559500a63f 93 /* check authentication options supplied */
andrewbonney 0:ec559500a63f 94 void auth_check_options (void);
andrewbonney 0:ec559500a63f 95
andrewbonney 0:ec559500a63f 96 /* check what secrets we have */
andrewbonney 0:ec559500a63f 97 void auth_reset (int);
andrewbonney 0:ec559500a63f 98
andrewbonney 0:ec559500a63f 99 /* Check peer-supplied username/password */
andrewbonney 0:ec559500a63f 100 u_char check_passwd (int, char *, int, char *, int, char **, int *);
andrewbonney 0:ec559500a63f 101
andrewbonney 0:ec559500a63f 102 /* get "secret" for chap */
andrewbonney 0:ec559500a63f 103 int get_secret (int, char *, char *, char *, int *, int);
andrewbonney 0:ec559500a63f 104
andrewbonney 0:ec559500a63f 105 /* check if IP address is authorized */
andrewbonney 0:ec559500a63f 106 int auth_ip_addr (int, u32_t);
andrewbonney 0:ec559500a63f 107
andrewbonney 0:ec559500a63f 108 /* check if IP address is unreasonable */
andrewbonney 0:ec559500a63f 109 int bad_ip_adrs (u32_t);
andrewbonney 0:ec559500a63f 110
andrewbonney 0:ec559500a63f 111 #endif /* AUTH_H */