Netservices modded to read fragmented HTTP respsonse/payload from special purpose server - 180 bytes only

Committer:
RodColeman
Date:
Thu Sep 08 10:48:09 2011 +0000
Revision:
0:850eacf3e945
revised fixed length to 178 bytes

Who changed what in which revision?

UserRevisionLine numberNew contents of line
RodColeman 0:850eacf3e945 1 #include "UMTSStick.h"
RodColeman 0:850eacf3e945 2
RodColeman 0:850eacf3e945 3 const UMTSSwitchingInfo UMTSwitchingTable[UMTS_SWITCHING_COUNT] = {
RodColeman 0:850eacf3e945 4
RodColeman 0:850eacf3e945 5 /*
RodColeman 0:850eacf3e945 6 struct UMTSSwitchingInfo
RodColeman 0:850eacf3e945 7 {
RodColeman 0:850eacf3e945 8 uint16_t cdfsVid;
RodColeman 0:850eacf3e945 9 uint16_t cdfsPid;
RodColeman 0:850eacf3e945 10 uint16_t serialVid;
RodColeman 0:850eacf3e945 11 uint16_t serialPidList[16];
RodColeman 0:850eacf3e945 12 byte targetClass;
RodColeman 0:850eacf3e945 13 bool huaweiPacket;
RodColeman 0:850eacf3e945 14 byte cdfsPacket[31];
RodColeman 0:850eacf3e945 15 };
RodColeman 0:850eacf3e945 16 */
RodColeman 0:850eacf3e945 17
RodColeman 0:850eacf3e945 18 //Huawei E220, E230, E270, E870
RodColeman 0:850eacf3e945 19 { 0x12d1, 0x1003, 0, {0}, 0xFF, true, {0} },
RodColeman 0:850eacf3e945 20
RodColeman 0:850eacf3e945 21 //Huawei E1550, E270+
RodColeman 0:850eacf3e945 22 { 0x12d1, 0x1446, 0x12d1, {0x1001, 0x1406, 0x140c, 0x14ac/*, 0x1003*/}, 0, false, { 0x55, 0x53, 0x42, 0x43, 0x12, 0x34, 0x56, 0x78, 0, 0, 0, 0, 0, 0, 0, 0x11, 0x06, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } }
RodColeman 0:850eacf3e945 23
RodColeman 0:850eacf3e945 24 };