takashi yamanoue
/
XBee_API_ex3
Xbee API Test 3
> help h or help m <status-in-hex>,. ... Modem status l <cmd>,<val-in-hex>. ... exec <cmd> (AT) at this host. lset fid <val-in-hex>. ... set local frame id. default is 1. lset cmd <val-in-hex>. ... set local command. lset val <val-in-hex>. ... set local command value. q <cmd>,<val-in-hex>. ... set queue parameter value. r <cmd>,<val-in-hex>. ... exec <cmd> (AT)at remote host. rset a16 <val-in-hex>. ... set remote address high. rset a64 <val-in-hex>,<val-in-hex>. ... set remote address low. rset fid <val-in-hex>. ... set remote frame id. default is 1. > l D4,0x05 cmd=D4 val=0x05 apiId=88 object 100008c8:35 01 00 10 88 00 05 FE 04 01 00 FF l OK: > l D4,0x04 cmd=D4 val=0x04 apiId=88 object 100008c8:35 01 00 10 88 00 05 FE 04 01 00 FF l OK: >
LPC1768/lwip/netif/ppp/vj.h@0:3edcfa3aba71, 2012-07-21 (annotated)
- Committer:
- takashiyamanoue
- Date:
- Sat Jul 21 04:09:54 2012 +0000
- Revision:
- 0:3edcfa3aba71
xbee test 3
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
takashiyamanoue | 0:3edcfa3aba71 | 1 | /* |
takashiyamanoue | 0:3edcfa3aba71 | 2 | * Definitions for tcp compression routines. |
takashiyamanoue | 0:3edcfa3aba71 | 3 | * |
takashiyamanoue | 0:3edcfa3aba71 | 4 | * $Id: vj.h,v 1.7 2010/02/22 17:52:09 goldsimon Exp $ |
takashiyamanoue | 0:3edcfa3aba71 | 5 | * |
takashiyamanoue | 0:3edcfa3aba71 | 6 | * Copyright (c) 1989 Regents of the University of California. |
takashiyamanoue | 0:3edcfa3aba71 | 7 | * All rights reserved. |
takashiyamanoue | 0:3edcfa3aba71 | 8 | * |
takashiyamanoue | 0:3edcfa3aba71 | 9 | * Redistribution and use in source and binary forms are permitted |
takashiyamanoue | 0:3edcfa3aba71 | 10 | * provided that the above copyright notice and this paragraph are |
takashiyamanoue | 0:3edcfa3aba71 | 11 | * duplicated in all such forms and that any documentation, |
takashiyamanoue | 0:3edcfa3aba71 | 12 | * advertising materials, and other materials related to such |
takashiyamanoue | 0:3edcfa3aba71 | 13 | * distribution and use acknowledge that the software was developed |
takashiyamanoue | 0:3edcfa3aba71 | 14 | * by the University of California, Berkeley. The name of the |
takashiyamanoue | 0:3edcfa3aba71 | 15 | * University may not be used to endorse or promote products derived |
takashiyamanoue | 0:3edcfa3aba71 | 16 | * from this software without specific prior written permission. |
takashiyamanoue | 0:3edcfa3aba71 | 17 | * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR |
takashiyamanoue | 0:3edcfa3aba71 | 18 | * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED |
takashiyamanoue | 0:3edcfa3aba71 | 19 | * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. |
takashiyamanoue | 0:3edcfa3aba71 | 20 | * |
takashiyamanoue | 0:3edcfa3aba71 | 21 | * Van Jacobson (van@helios.ee.lbl.gov), Dec 31, 1989: |
takashiyamanoue | 0:3edcfa3aba71 | 22 | * - Initial distribution. |
takashiyamanoue | 0:3edcfa3aba71 | 23 | */ |
takashiyamanoue | 0:3edcfa3aba71 | 24 | |
takashiyamanoue | 0:3edcfa3aba71 | 25 | #ifndef VJ_H |
takashiyamanoue | 0:3edcfa3aba71 | 26 | #define VJ_H |
takashiyamanoue | 0:3edcfa3aba71 | 27 | |
takashiyamanoue | 0:3edcfa3aba71 | 28 | #include "lwip/ip.h" |
takashiyamanoue | 0:3edcfa3aba71 | 29 | #include "lwip/tcp_impl.h" |
takashiyamanoue | 0:3edcfa3aba71 | 30 | |
takashiyamanoue | 0:3edcfa3aba71 | 31 | #define MAX_SLOTS 16 /* must be > 2 and < 256 */ |
takashiyamanoue | 0:3edcfa3aba71 | 32 | #define MAX_HDR 128 |
takashiyamanoue | 0:3edcfa3aba71 | 33 | |
takashiyamanoue | 0:3edcfa3aba71 | 34 | /* |
takashiyamanoue | 0:3edcfa3aba71 | 35 | * Compressed packet format: |
takashiyamanoue | 0:3edcfa3aba71 | 36 | * |
takashiyamanoue | 0:3edcfa3aba71 | 37 | * The first octet contains the packet type (top 3 bits), TCP |
takashiyamanoue | 0:3edcfa3aba71 | 38 | * 'push' bit, and flags that indicate which of the 4 TCP sequence |
takashiyamanoue | 0:3edcfa3aba71 | 39 | * numbers have changed (bottom 5 bits). The next octet is a |
takashiyamanoue | 0:3edcfa3aba71 | 40 | * conversation number that associates a saved IP/TCP header with |
takashiyamanoue | 0:3edcfa3aba71 | 41 | * the compressed packet. The next two octets are the TCP checksum |
takashiyamanoue | 0:3edcfa3aba71 | 42 | * from the original datagram. The next 0 to 15 octets are |
takashiyamanoue | 0:3edcfa3aba71 | 43 | * sequence number changes, one change per bit set in the header |
takashiyamanoue | 0:3edcfa3aba71 | 44 | * (there may be no changes and there are two special cases where |
takashiyamanoue | 0:3edcfa3aba71 | 45 | * the receiver implicitly knows what changed -- see below). |
takashiyamanoue | 0:3edcfa3aba71 | 46 | * |
takashiyamanoue | 0:3edcfa3aba71 | 47 | * There are 5 numbers which can change (they are always inserted |
takashiyamanoue | 0:3edcfa3aba71 | 48 | * in the following order): TCP urgent pointer, window, |
takashiyamanoue | 0:3edcfa3aba71 | 49 | * acknowlegement, sequence number and IP ID. (The urgent pointer |
takashiyamanoue | 0:3edcfa3aba71 | 50 | * is different from the others in that its value is sent, not the |
takashiyamanoue | 0:3edcfa3aba71 | 51 | * change in value.) Since typical use of SLIP links is biased |
takashiyamanoue | 0:3edcfa3aba71 | 52 | * toward small packets (see comments on MTU/MSS below), changes |
takashiyamanoue | 0:3edcfa3aba71 | 53 | * use a variable length coding with one octet for numbers in the |
takashiyamanoue | 0:3edcfa3aba71 | 54 | * range 1 - 255 and 3 octets (0, MSB, LSB) for numbers in the |
takashiyamanoue | 0:3edcfa3aba71 | 55 | * range 256 - 65535 or 0. (If the change in sequence number or |
takashiyamanoue | 0:3edcfa3aba71 | 56 | * ack is more than 65535, an uncompressed packet is sent.) |
takashiyamanoue | 0:3edcfa3aba71 | 57 | */ |
takashiyamanoue | 0:3edcfa3aba71 | 58 | |
takashiyamanoue | 0:3edcfa3aba71 | 59 | /* |
takashiyamanoue | 0:3edcfa3aba71 | 60 | * Packet types (must not conflict with IP protocol version) |
takashiyamanoue | 0:3edcfa3aba71 | 61 | * |
takashiyamanoue | 0:3edcfa3aba71 | 62 | * The top nibble of the first octet is the packet type. There are |
takashiyamanoue | 0:3edcfa3aba71 | 63 | * three possible types: IP (not proto TCP or tcp with one of the |
takashiyamanoue | 0:3edcfa3aba71 | 64 | * control flags set); uncompressed TCP (a normal IP/TCP packet but |
takashiyamanoue | 0:3edcfa3aba71 | 65 | * with the 8-bit protocol field replaced by an 8-bit connection id -- |
takashiyamanoue | 0:3edcfa3aba71 | 66 | * this type of packet syncs the sender & receiver); and compressed |
takashiyamanoue | 0:3edcfa3aba71 | 67 | * TCP (described above). |
takashiyamanoue | 0:3edcfa3aba71 | 68 | * |
takashiyamanoue | 0:3edcfa3aba71 | 69 | * LSB of 4-bit field is TCP "PUSH" bit (a worthless anachronism) and |
takashiyamanoue | 0:3edcfa3aba71 | 70 | * is logically part of the 4-bit "changes" field that follows. Top |
takashiyamanoue | 0:3edcfa3aba71 | 71 | * three bits are actual packet type. For backward compatibility |
takashiyamanoue | 0:3edcfa3aba71 | 72 | * and in the interest of conserving bits, numbers are chosen so the |
takashiyamanoue | 0:3edcfa3aba71 | 73 | * IP protocol version number (4) which normally appears in this nibble |
takashiyamanoue | 0:3edcfa3aba71 | 74 | * means "IP packet". |
takashiyamanoue | 0:3edcfa3aba71 | 75 | */ |
takashiyamanoue | 0:3edcfa3aba71 | 76 | |
takashiyamanoue | 0:3edcfa3aba71 | 77 | /* packet types */ |
takashiyamanoue | 0:3edcfa3aba71 | 78 | #define TYPE_IP 0x40 |
takashiyamanoue | 0:3edcfa3aba71 | 79 | #define TYPE_UNCOMPRESSED_TCP 0x70 |
takashiyamanoue | 0:3edcfa3aba71 | 80 | #define TYPE_COMPRESSED_TCP 0x80 |
takashiyamanoue | 0:3edcfa3aba71 | 81 | #define TYPE_ERROR 0x00 |
takashiyamanoue | 0:3edcfa3aba71 | 82 | |
takashiyamanoue | 0:3edcfa3aba71 | 83 | /* Bits in first octet of compressed packet */ |
takashiyamanoue | 0:3edcfa3aba71 | 84 | #define NEW_C 0x40 /* flag bits for what changed in a packet */ |
takashiyamanoue | 0:3edcfa3aba71 | 85 | #define NEW_I 0x20 |
takashiyamanoue | 0:3edcfa3aba71 | 86 | #define NEW_S 0x08 |
takashiyamanoue | 0:3edcfa3aba71 | 87 | #define NEW_A 0x04 |
takashiyamanoue | 0:3edcfa3aba71 | 88 | #define NEW_W 0x02 |
takashiyamanoue | 0:3edcfa3aba71 | 89 | #define NEW_U 0x01 |
takashiyamanoue | 0:3edcfa3aba71 | 90 | |
takashiyamanoue | 0:3edcfa3aba71 | 91 | /* reserved, special-case values of above */ |
takashiyamanoue | 0:3edcfa3aba71 | 92 | #define SPECIAL_I (NEW_S|NEW_W|NEW_U) /* echoed interactive traffic */ |
takashiyamanoue | 0:3edcfa3aba71 | 93 | #define SPECIAL_D (NEW_S|NEW_A|NEW_W|NEW_U) /* unidirectional data */ |
takashiyamanoue | 0:3edcfa3aba71 | 94 | #define SPECIALS_MASK (NEW_S|NEW_A|NEW_W|NEW_U) |
takashiyamanoue | 0:3edcfa3aba71 | 95 | |
takashiyamanoue | 0:3edcfa3aba71 | 96 | #define TCP_PUSH_BIT 0x10 |
takashiyamanoue | 0:3edcfa3aba71 | 97 | |
takashiyamanoue | 0:3edcfa3aba71 | 98 | |
takashiyamanoue | 0:3edcfa3aba71 | 99 | /* |
takashiyamanoue | 0:3edcfa3aba71 | 100 | * "state" data for each active tcp conversation on the wire. This is |
takashiyamanoue | 0:3edcfa3aba71 | 101 | * basically a copy of the entire IP/TCP header from the last packet |
takashiyamanoue | 0:3edcfa3aba71 | 102 | * we saw from the conversation together with a small identifier |
takashiyamanoue | 0:3edcfa3aba71 | 103 | * the transmit & receive ends of the line use to locate saved header. |
takashiyamanoue | 0:3edcfa3aba71 | 104 | */ |
takashiyamanoue | 0:3edcfa3aba71 | 105 | struct cstate { |
takashiyamanoue | 0:3edcfa3aba71 | 106 | struct cstate *cs_next; /* next most recently used state (xmit only) */ |
takashiyamanoue | 0:3edcfa3aba71 | 107 | u_short cs_hlen; /* size of hdr (receive only) */ |
takashiyamanoue | 0:3edcfa3aba71 | 108 | u_char cs_id; /* connection # associated with this state */ |
takashiyamanoue | 0:3edcfa3aba71 | 109 | u_char cs_filler; |
takashiyamanoue | 0:3edcfa3aba71 | 110 | union { |
takashiyamanoue | 0:3edcfa3aba71 | 111 | char csu_hdr[MAX_HDR]; |
takashiyamanoue | 0:3edcfa3aba71 | 112 | struct ip_hdr csu_ip; /* ip/tcp hdr from most recent packet */ |
takashiyamanoue | 0:3edcfa3aba71 | 113 | } vjcs_u; |
takashiyamanoue | 0:3edcfa3aba71 | 114 | }; |
takashiyamanoue | 0:3edcfa3aba71 | 115 | #define cs_ip vjcs_u.csu_ip |
takashiyamanoue | 0:3edcfa3aba71 | 116 | #define cs_hdr vjcs_u.csu_hdr |
takashiyamanoue | 0:3edcfa3aba71 | 117 | |
takashiyamanoue | 0:3edcfa3aba71 | 118 | |
takashiyamanoue | 0:3edcfa3aba71 | 119 | struct vjstat { |
takashiyamanoue | 0:3edcfa3aba71 | 120 | unsigned long vjs_packets; /* outbound packets */ |
takashiyamanoue | 0:3edcfa3aba71 | 121 | unsigned long vjs_compressed; /* outbound compressed packets */ |
takashiyamanoue | 0:3edcfa3aba71 | 122 | unsigned long vjs_searches; /* searches for connection state */ |
takashiyamanoue | 0:3edcfa3aba71 | 123 | unsigned long vjs_misses; /* times couldn't find conn. state */ |
takashiyamanoue | 0:3edcfa3aba71 | 124 | unsigned long vjs_uncompressedin; /* inbound uncompressed packets */ |
takashiyamanoue | 0:3edcfa3aba71 | 125 | unsigned long vjs_compressedin; /* inbound compressed packets */ |
takashiyamanoue | 0:3edcfa3aba71 | 126 | unsigned long vjs_errorin; /* inbound unknown type packets */ |
takashiyamanoue | 0:3edcfa3aba71 | 127 | unsigned long vjs_tossed; /* inbound packets tossed because of error */ |
takashiyamanoue | 0:3edcfa3aba71 | 128 | }; |
takashiyamanoue | 0:3edcfa3aba71 | 129 | |
takashiyamanoue | 0:3edcfa3aba71 | 130 | /* |
takashiyamanoue | 0:3edcfa3aba71 | 131 | * all the state data for one serial line (we need one of these per line). |
takashiyamanoue | 0:3edcfa3aba71 | 132 | */ |
takashiyamanoue | 0:3edcfa3aba71 | 133 | struct vjcompress { |
takashiyamanoue | 0:3edcfa3aba71 | 134 | struct cstate *last_cs; /* most recently used tstate */ |
takashiyamanoue | 0:3edcfa3aba71 | 135 | u_char last_recv; /* last rcvd conn. id */ |
takashiyamanoue | 0:3edcfa3aba71 | 136 | u_char last_xmit; /* last sent conn. id */ |
takashiyamanoue | 0:3edcfa3aba71 | 137 | u_short flags; |
takashiyamanoue | 0:3edcfa3aba71 | 138 | u_char maxSlotIndex; |
takashiyamanoue | 0:3edcfa3aba71 | 139 | u_char compressSlot; /* Flag indicating OK to compress slot ID. */ |
takashiyamanoue | 0:3edcfa3aba71 | 140 | #if LINK_STATS |
takashiyamanoue | 0:3edcfa3aba71 | 141 | struct vjstat stats; |
takashiyamanoue | 0:3edcfa3aba71 | 142 | #endif |
takashiyamanoue | 0:3edcfa3aba71 | 143 | struct cstate tstate[MAX_SLOTS]; /* xmit connection states */ |
takashiyamanoue | 0:3edcfa3aba71 | 144 | struct cstate rstate[MAX_SLOTS]; /* receive connection states */ |
takashiyamanoue | 0:3edcfa3aba71 | 145 | }; |
takashiyamanoue | 0:3edcfa3aba71 | 146 | |
takashiyamanoue | 0:3edcfa3aba71 | 147 | /* flag values */ |
takashiyamanoue | 0:3edcfa3aba71 | 148 | #define VJF_TOSS 1U /* tossing rcvd frames because of input err */ |
takashiyamanoue | 0:3edcfa3aba71 | 149 | |
takashiyamanoue | 0:3edcfa3aba71 | 150 | extern void vj_compress_init (struct vjcompress *comp); |
takashiyamanoue | 0:3edcfa3aba71 | 151 | extern u_int vj_compress_tcp (struct vjcompress *comp, struct pbuf *pb); |
takashiyamanoue | 0:3edcfa3aba71 | 152 | extern void vj_uncompress_err (struct vjcompress *comp); |
takashiyamanoue | 0:3edcfa3aba71 | 153 | extern int vj_uncompress_uncomp(struct pbuf *nb, struct vjcompress *comp); |
takashiyamanoue | 0:3edcfa3aba71 | 154 | extern int vj_uncompress_tcp (struct pbuf **nb, struct vjcompress *comp); |
takashiyamanoue | 0:3edcfa3aba71 | 155 | |
takashiyamanoue | 0:3edcfa3aba71 | 156 | #endif /* VJ_H */ |