I have a problem getting this to work. Server only recieves half of the data being sent. Whats wrong

Dependencies:   mbed

Committer:
tax
Date:
Tue Mar 29 13:20:15 2011 +0000
Revision:
0:66300c77c6e9

        

Who changed what in which revision?

UserRevisionLine numberNew contents of line
tax 0:66300c77c6e9 1 /*****************************************************************************
tax 0:66300c77c6e9 2 * ipcp.h - PPP IP NCP: Internet Protocol Network Control Protocol header file.
tax 0:66300c77c6e9 3 *
tax 0:66300c77c6e9 4 * Copyright (c) 2003 by Marc Boucher, Services Informatiques (MBSI) inc.
tax 0:66300c77c6e9 5 * portions Copyright (c) 1997 Global Election Systems Inc.
tax 0:66300c77c6e9 6 *
tax 0:66300c77c6e9 7 * The authors hereby grant permission to use, copy, modify, distribute,
tax 0:66300c77c6e9 8 * and license this software and its documentation for any purpose, provided
tax 0:66300c77c6e9 9 * that existing copyright notices are retained in all copies and that this
tax 0:66300c77c6e9 10 * notice and the following disclaimer are included verbatim in any
tax 0:66300c77c6e9 11 * distributions. No written agreement, license, or royalty fee is required
tax 0:66300c77c6e9 12 * for any of the authorized uses.
tax 0:66300c77c6e9 13 *
tax 0:66300c77c6e9 14 * THIS SOFTWARE IS PROVIDED BY THE CONTRIBUTORS *AS IS* AND ANY EXPRESS OR
tax 0:66300c77c6e9 15 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
tax 0:66300c77c6e9 16 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
tax 0:66300c77c6e9 17 * IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
tax 0:66300c77c6e9 18 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
tax 0:66300c77c6e9 19 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
tax 0:66300c77c6e9 20 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
tax 0:66300c77c6e9 21 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
tax 0:66300c77c6e9 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
tax 0:66300c77c6e9 23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
tax 0:66300c77c6e9 24 *
tax 0:66300c77c6e9 25 ******************************************************************************
tax 0:66300c77c6e9 26 * REVISION HISTORY
tax 0:66300c77c6e9 27 *
tax 0:66300c77c6e9 28 * 03-01-01 Marc Boucher <marc@mbsi.ca>
tax 0:66300c77c6e9 29 * Ported to lwIP.
tax 0:66300c77c6e9 30 * 97-12-04 Guy Lancaster <glanca@gesn.com>, Global Election Systems Inc.
tax 0:66300c77c6e9 31 * Original derived from BSD codes.
tax 0:66300c77c6e9 32 *****************************************************************************/
tax 0:66300c77c6e9 33 /*
tax 0:66300c77c6e9 34 * ipcp.h - IP Control Protocol definitions.
tax 0:66300c77c6e9 35 *
tax 0:66300c77c6e9 36 * Copyright (c) 1989 Carnegie Mellon University.
tax 0:66300c77c6e9 37 * All rights reserved.
tax 0:66300c77c6e9 38 *
tax 0:66300c77c6e9 39 * Redistribution and use in source and binary forms are permitted
tax 0:66300c77c6e9 40 * provided that the above copyright notice and this paragraph are
tax 0:66300c77c6e9 41 * duplicated in all such forms and that any documentation,
tax 0:66300c77c6e9 42 * advertising materials, and other materials related to such
tax 0:66300c77c6e9 43 * distribution and use acknowledge that the software was developed
tax 0:66300c77c6e9 44 * by Carnegie Mellon University. The name of the
tax 0:66300c77c6e9 45 * University may not be used to endorse or promote products derived
tax 0:66300c77c6e9 46 * from this software without specific prior written permission.
tax 0:66300c77c6e9 47 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
tax 0:66300c77c6e9 48 * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
tax 0:66300c77c6e9 49 * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
tax 0:66300c77c6e9 50 *
tax 0:66300c77c6e9 51 * $Id: ipcp.h,v 1.4 2010/01/18 20:49:43 goldsimon Exp $
tax 0:66300c77c6e9 52 */
tax 0:66300c77c6e9 53
tax 0:66300c77c6e9 54 #ifndef IPCP_H
tax 0:66300c77c6e9 55 #define IPCP_H
tax 0:66300c77c6e9 56
tax 0:66300c77c6e9 57 /*
tax 0:66300c77c6e9 58 * Options.
tax 0:66300c77c6e9 59 */
tax 0:66300c77c6e9 60 #define CI_ADDRS 1 /* IP Addresses */
tax 0:66300c77c6e9 61 #define CI_COMPRESSTYPE 2 /* Compression Type */
tax 0:66300c77c6e9 62 #define CI_ADDR 3
tax 0:66300c77c6e9 63
tax 0:66300c77c6e9 64 #define CI_MS_DNS1 129 /* Primary DNS value */
tax 0:66300c77c6e9 65 #define CI_MS_WINS1 128 /* Primary WINS value */
tax 0:66300c77c6e9 66 #define CI_MS_DNS2 131 /* Secondary DNS value */
tax 0:66300c77c6e9 67 #define CI_MS_WINS2 130 /* Secondary WINS value */
tax 0:66300c77c6e9 68
tax 0:66300c77c6e9 69 #define IPCP_VJMODE_OLD 1 /* "old" mode (option # = 0x0037) */
tax 0:66300c77c6e9 70 #define IPCP_VJMODE_RFC1172 2 /* "old-rfc"mode (option # = 0x002d) */
tax 0:66300c77c6e9 71 #define IPCP_VJMODE_RFC1332 3 /* "new-rfc"mode (option # = 0x002d, */
tax 0:66300c77c6e9 72 /* maxslot and slot number compression) */
tax 0:66300c77c6e9 73
tax 0:66300c77c6e9 74 #define IPCP_VJ_COMP 0x002d /* current value for VJ compression option */
tax 0:66300c77c6e9 75 #define IPCP_VJ_COMP_OLD 0x0037 /* "old" (i.e, broken) value for VJ */
tax 0:66300c77c6e9 76 /* compression option */
tax 0:66300c77c6e9 77
tax 0:66300c77c6e9 78 typedef struct ipcp_options {
tax 0:66300c77c6e9 79 u_int neg_addr : 1; /* Negotiate IP Address? */
tax 0:66300c77c6e9 80 u_int old_addrs : 1; /* Use old (IP-Addresses) option? */
tax 0:66300c77c6e9 81 u_int req_addr : 1; /* Ask peer to send IP address? */
tax 0:66300c77c6e9 82 u_int default_route : 1; /* Assign default route through interface? */
tax 0:66300c77c6e9 83 u_int proxy_arp : 1; /* Make proxy ARP entry for peer? */
tax 0:66300c77c6e9 84 u_int neg_vj : 1; /* Van Jacobson Compression? */
tax 0:66300c77c6e9 85 u_int old_vj : 1; /* use old (short) form of VJ option? */
tax 0:66300c77c6e9 86 u_int accept_local : 1; /* accept peer's value for ouraddr */
tax 0:66300c77c6e9 87 u_int accept_remote : 1; /* accept peer's value for hisaddr */
tax 0:66300c77c6e9 88 u_int req_dns1 : 1; /* Ask peer to send primary DNS address? */
tax 0:66300c77c6e9 89 u_int req_dns2 : 1; /* Ask peer to send secondary DNS address? */
tax 0:66300c77c6e9 90 u_short vj_protocol; /* protocol value to use in VJ option */
tax 0:66300c77c6e9 91 u_char maxslotindex; /* VJ slots - 1. */
tax 0:66300c77c6e9 92 u_char cflag; /* VJ slot compression flag. */
tax 0:66300c77c6e9 93 u32_t ouraddr, hisaddr; /* Addresses in NETWORK BYTE ORDER */
tax 0:66300c77c6e9 94 u32_t dnsaddr[2]; /* Primary and secondary MS DNS entries */
tax 0:66300c77c6e9 95 u32_t winsaddr[2]; /* Primary and secondary MS WINS entries */
tax 0:66300c77c6e9 96 } ipcp_options;
tax 0:66300c77c6e9 97
tax 0:66300c77c6e9 98 extern fsm ipcp_fsm[];
tax 0:66300c77c6e9 99 extern ipcp_options ipcp_wantoptions[];
tax 0:66300c77c6e9 100 extern ipcp_options ipcp_gotoptions[];
tax 0:66300c77c6e9 101 extern ipcp_options ipcp_allowoptions[];
tax 0:66300c77c6e9 102 extern ipcp_options ipcp_hisoptions[];
tax 0:66300c77c6e9 103
tax 0:66300c77c6e9 104 extern struct protent ipcp_protent;
tax 0:66300c77c6e9 105
tax 0:66300c77c6e9 106 #endif /* IPCP_H */