vj.c
上传用户:yyhongfa
上传日期:2013-01-18
资源大小:267k
文件大小:17k
开发平台:

C/C++

  1. /*
  2.  * Routines to compress and uncompess tcp packets (for transmission
  3.  * over low speed serial lines.
  4.  *
  5.  * Copyright (c) 1989 Regents of the University of California.
  6.  * All rights reserved.
  7.  *
  8.  * Redistribution and use in source and binary forms are permitted
  9.  * provided that the above copyright notice and this paragraph are
  10.  * duplicated in all such forms and that any documentation,
  11.  * advertising materials, and other materials related to such
  12.  * distribution and use acknowledge that the software was developed
  13.  * by the University of California, Berkeley.  The name of the
  14.  * University may not be used to endorse or promote products derived
  15.  * from this software without specific prior written permission.
  16.  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
  17.  * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
  18.  * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  19.  *
  20.  * Van Jacobson (van@helios.ee.lbl.gov), Dec 31, 1989:
  21.  * - Initial distribution.
  22.  *
  23.  * Modified June 1993 by Paul Mackerras, paulus@cs.anu.edu.au,
  24.  * so that the entire packet being decompressed doesn't have
  25.  * to be in contiguous memory (just the compressed header).
  26.  *
  27.  * Modified March 1998 by Guy Lancaster, glanca@gesn.com,
  28.  * for a 16 bit processor.
  29.  */
  30. #include <string.h>
  31. #include "ppp.h"
  32. #include "vj.h"
  33. #include "pppdebug.h"
  34. #if VJ_SUPPORT > 0
  35. #if LINK_STATS
  36. #define INCR(counter) ++comp->stats.counter
  37. #else
  38. #define INCR(counter)
  39. #endif
  40. #if defined(NO_CHAR_BITFIELDS)
  41. #define getip_hl(base) ((base).ip_hl_v&0xf)
  42. #define getth_off(base) (((base).th_x2_off&0xf0)>>4)
  43. #else
  44. #define getip_hl(base) ((base).ip_hl)
  45. #define getth_off(base) ((base).th_off)
  46. #endif
  47. void vj_compress_init(struct vjcompress *comp)
  48. {
  49. register u_int i;
  50. register struct cstate *tstate = comp->tstate;
  51. #if MAX_SLOTS == 0
  52. memset((char *)comp, 0, sizeof(*comp));
  53. #endif
  54. comp->maxSlotIndex = MAX_SLOTS - 1;
  55. comp->compressSlot = 0; /* Disable slot ID compression by default. */
  56. for (i = MAX_SLOTS - 1; i > 0; --i) {
  57. tstate[i].cs_id = i;
  58. tstate[i].cs_next = &tstate[i - 1];
  59. }
  60. tstate[0].cs_next = &tstate[MAX_SLOTS - 1];
  61. tstate[0].cs_id = 0;
  62. comp->last_cs = &tstate[0];
  63. comp->last_recv = 255;
  64. comp->last_xmit = 255;
  65. comp->flags = VJF_TOSS;
  66. }
  67. /* ENCODE encodes a number that is known to be non-zero.  ENCODEZ
  68.  * checks for zero (since zero has to be encoded in the long, 3 byte
  69.  * form).
  70.  */
  71. #define ENCODE(n) { 
  72. if ((u_short)(n) >= 256) { 
  73. *cp++ = 0; 
  74. cp[1] = (n); 
  75. cp[0] = (n) >> 8; 
  76. cp += 2; 
  77. } else { 
  78. *cp++ = (n); 
  79. }
  80. #define ENCODEZ(n) { 
  81. if ((u_short)(n) >= 256 || (u_short)(n) == 0) { 
  82. *cp++ = 0; 
  83. cp[1] = (n); 
  84. cp[0] = (n) >> 8; 
  85. cp += 2; 
  86. } else { 
  87. *cp++ = (n); 
  88. }
  89. #define DECODEL(f) { 
  90. if (*cp == 0) {
  91. u32_t tmp = ntohl(f) + ((cp[1] << 8) | cp[2]); 
  92. (f) = htonl(tmp); 
  93. cp += 3; 
  94. } else { 
  95. u32_t tmp = ntohl(f) + (u32_t)*cp++; 
  96. (f) = htonl(tmp); 
  97. }
  98. #define DECODES(f) { 
  99. if (*cp == 0) {
  100. u_short tmp = ntohs(f) + (((u_short)cp[1] << 8) | cp[2]); 
  101. (f) = htons(tmp); 
  102. cp += 3; 
  103. } else { 
  104. u_short tmp = ntohs(f) + (u_short)*cp++; 
  105. (f) = htons(tmp); 
  106. }
  107. #define DECODEU(f) { 
  108. if (*cp == 0) {
  109. (f) = htons(((u_short)cp[1] << 8) | cp[2]); 
  110. cp += 3; 
  111. } else { 
  112. (f) = htons((u_short)*cp++); 
  113. }
  114. /*
  115.  * vj_compress_tcp - Attempt to do Van Jacobsen header compression on a
  116.  * packet.  This assumes that nb and comp are not null and that the first
  117.  * buffer of the chain contains a valid IP header.
  118.  * Return the VJ type code indicating whether or not the packet was
  119.  * compressed.
  120.  */
  121. u_int vj_compress_tcp(
  122. struct vjcompress *comp,
  123. struct pbuf *pb
  124. )
  125. {
  126. register struct ip *ip = (struct ip *)pb->payload;
  127. register struct cstate *cs = comp->last_cs->cs_next;
  128. register u_short hlen = getip_hl(*ip);
  129. register struct tcphdr *oth;
  130. register struct tcphdr *th;
  131. register u_short deltaS, deltaA;
  132. register u_long deltaL;
  133. register u_int changes = 0;
  134. u_char new_seq[16];
  135. register u_char *cp = new_seq;
  136. /*
  137.  * Check that the packet is IP proto TCP.
  138.  */
  139. if (ip->ip_p != IPPROTO_TCP)
  140. return (TYPE_IP);
  141. /*
  142.  * Bail if this is an IP fragment or if the TCP packet isn't
  143.  * `compressible' (i.e., ACK isn't set or some other control bit is
  144.  * set).  
  145.  */
  146. if ((ip->ip_off & htons(0x3fff)) || pb->tot_len < 40)
  147. return (TYPE_IP);
  148. th = (struct tcphdr *)&((long *)ip)[hlen];
  149. if ((th->th_flags & (TCP_SYN|TCP_FIN|TCP_RST|TCP_ACK)) != TCP_ACK)
  150. return (TYPE_IP);
  151. /*
  152.  * Packet is compressible -- we're going to send either a
  153.  * COMPRESSED_TCP or UNCOMPRESSED_TCP packet.  Either way we need
  154.  * to locate (or create) the connection state.  Special case the
  155.  * most recently used connection since it's most likely to be used
  156.  * again & we don't have to do any reordering if it's used.
  157.  */
  158. INCR(vjs_packets);
  159. if (ip->ip_src.s_addr != cs->cs_ip.ip_src.s_addr 
  160. || ip->ip_dst.s_addr != cs->cs_ip.ip_dst.s_addr 
  161. || *(long *)th != ((long *)&cs->cs_ip)[getip_hl(cs->cs_ip)]) {
  162. /*
  163.  * Wasn't the first -- search for it.
  164.  *
  165.  * States are kept in a circularly linked list with
  166.  * last_cs pointing to the end of the list.  The
  167.  * list is kept in lru order by moving a state to the
  168.  * head of the list whenever it is referenced.  Since
  169.  * the list is short and, empirically, the connection
  170.  * we want is almost always near the front, we locate
  171.  * states via linear search.  If we don't find a state
  172.  * for the datagram, the oldest state is (re-)used.
  173.  */
  174. register struct cstate *lcs;
  175. register struct cstate *lastcs = comp->last_cs;
  176. do {
  177. lcs = cs; cs = cs->cs_next;
  178. INCR(vjs_searches);
  179. if (ip->ip_src.s_addr == cs->cs_ip.ip_src.s_addr
  180. && ip->ip_dst.s_addr == cs->cs_ip.ip_dst.s_addr
  181. && *(long *)th == ((long *)&cs->cs_ip)[getip_hl(cs->cs_ip)])
  182. goto found;
  183. } while (cs != lastcs);
  184. /*
  185.  * Didn't find it -- re-use oldest cstate.  Send an
  186.  * uncompressed packet that tells the other side what
  187.  * connection number we're using for this conversation.
  188.  * Note that since the state list is circular, the oldest
  189.  * state points to the newest and we only need to set
  190.  * last_cs to update the lru linkage.
  191.  */
  192. INCR(vjs_misses);
  193. comp->last_cs = lcs;
  194. hlen += getth_off(*th);
  195. hlen <<= 2;
  196. /* Check that the IP/TCP headers are contained in the first buffer. */
  197. if (hlen > pb->len)
  198. return (TYPE_IP);
  199. goto uncompressed;
  200. found:
  201. /*
  202.  * Found it -- move to the front on the connection list.
  203.  */
  204. if (cs == lastcs)
  205. comp->last_cs = lcs;
  206. else {
  207. lcs->cs_next = cs->cs_next;
  208. cs->cs_next = lastcs->cs_next;
  209. lastcs->cs_next = cs;
  210. }
  211. }
  212. oth = (struct tcphdr *)&((long *)&cs->cs_ip)[hlen];
  213. deltaS = hlen;
  214. hlen += getth_off(*th);
  215. hlen <<= 2;
  216. /* Check that the IP/TCP headers are contained in the first buffer. */
  217. if (hlen > pb->len) {
  218. PPPDEBUG((LOG_INFO, "vj_compress_tcp: header len %d spans buffersn", 
  219. hlen));
  220. return (TYPE_IP);
  221. }
  222. /*
  223.  * Make sure that only what we expect to change changed. The first
  224.  * line of the `if' checks the IP protocol version, header length &
  225.  * type of service.  The 2nd line checks the "Don't fragment" bit.
  226.  * The 3rd line checks the time-to-live and protocol (the protocol
  227.  * check is unnecessary but costless).  The 4th line checks the TCP
  228.  * header length.  The 5th line checks IP options, if any.  The 6th
  229.  * line checks TCP options, if any.  If any of these things are
  230.  * different between the previous & current datagram, we send the
  231.  * current datagram `uncompressed'.
  232.  */
  233. if (((u_short *)ip)[0] != ((u_short *)&cs->cs_ip)[0] 
  234. || ((u_short *)ip)[3] != ((u_short *)&cs->cs_ip)[3] 
  235. || ((u_short *)ip)[4] != ((u_short *)&cs->cs_ip)[4] 
  236. || getth_off(*th) != getth_off(*oth) 
  237. || (deltaS > 5 && BCMP(ip + 1, &cs->cs_ip + 1, (deltaS - 5) << 2)) 
  238. || (getth_off(*th) > 5 && BCMP(th + 1, oth + 1, (getth_off(*th) - 5) << 2)))
  239. goto uncompressed;
  240. /*
  241.  * Figure out which of the changing fields changed.  The
  242.  * receiver expects changes in the order: urgent, window,
  243.  * ack, seq (the order minimizes the number of temporaries
  244.  * needed in this section of code).
  245.  */
  246. if (th->th_flags & TCP_URG) {
  247. deltaS = ntohs(th->th_urp);
  248. ENCODEZ(deltaS);
  249. changes |= NEW_U;
  250. } else if (th->th_urp != oth->th_urp)
  251. /* argh! URG not set but urp changed -- a sensible
  252.  * implementation should never do this but RFC793
  253.  * doesn't prohibit the change so we have to deal
  254.  * with it. */
  255. goto uncompressed;
  256. if ((deltaS = (u_short)(ntohs(th->th_win) - ntohs(oth->th_win))) != 0) {
  257. ENCODE(deltaS);
  258. changes |= NEW_W;
  259. }
  260. if ((deltaL = ntohl(th->th_ack) - ntohl(oth->th_ack)) != 0) {
  261. if (deltaL > 0xffff)
  262. goto uncompressed;
  263. deltaA = (u_short)deltaL;
  264. ENCODE(deltaA);
  265. changes |= NEW_A;
  266. }
  267. if ((deltaL = ntohl(th->th_seq) - ntohl(oth->th_seq)) != 0) {
  268. if (deltaL > 0xffff)
  269. goto uncompressed;
  270. deltaS = (u_short)deltaL;
  271. ENCODE(deltaS);
  272. changes |= NEW_S;
  273. }
  274. switch(changes) {
  275. case 0:
  276. /*
  277.  * Nothing changed. If this packet contains data and the
  278.  * last one didn't, this is probably a data packet following
  279.  * an ack (normal on an interactive connection) and we send
  280.  * it compressed.  Otherwise it's probably a retransmit,
  281.  * retransmitted ack or window probe.  Send it uncompressed
  282.  * in case the other side missed the compressed version.
  283.  */
  284. if (ip->ip_len != cs->cs_ip.ip_len &&
  285. ntohs(cs->cs_ip.ip_len) == hlen)
  286. break;
  287. /* (fall through) */
  288. case SPECIAL_I:
  289. case SPECIAL_D:
  290. /*
  291.  * actual changes match one of our special case encodings --
  292.  * send packet uncompressed.
  293.  */
  294. goto uncompressed;
  295. case NEW_S|NEW_A:
  296. if (deltaS == deltaA && deltaS == ntohs(cs->cs_ip.ip_len) - hlen) {
  297. /* special case for echoed terminal traffic */
  298. changes = SPECIAL_I;
  299. cp = new_seq;
  300. }
  301. break;
  302. case NEW_S:
  303. if (deltaS == ntohs(cs->cs_ip.ip_len) - hlen) {
  304. /* special case for data xfer */
  305. changes = SPECIAL_D;
  306. cp = new_seq;
  307. }
  308. break;
  309. }
  310. deltaS = (u_short)(ntohs(ip->ip_id) - ntohs(cs->cs_ip.ip_id));
  311. if (deltaS != 1) {
  312. ENCODEZ(deltaS);
  313. changes |= NEW_I;
  314. }
  315. if (th->th_flags & TCP_PSH)
  316. changes |= TCP_PUSH_BIT;
  317. /*
  318.  * Grab the cksum before we overwrite it below.  Then update our
  319.  * state with this packet's header.
  320.  */
  321. deltaA = ntohs(th->th_sum);
  322. BCOPY(ip, &cs->cs_ip, hlen);
  323. /*
  324.  * We want to use the original packet as our compressed packet.
  325.  * (cp - new_seq) is the number of bytes we need for compressed
  326.  * sequence numbers.  In addition we need one byte for the change
  327.  * mask, one for the connection id and two for the tcp checksum.
  328.  * So, (cp - new_seq) + 4 bytes of header are needed.  hlen is how
  329.  * many bytes of the original packet to toss so subtract the two to
  330.  * get the new packet size.
  331.  */
  332. deltaS = (u_short)(cp - new_seq);
  333. if (!comp->compressSlot || comp->last_xmit != cs->cs_id) {
  334. comp->last_xmit = cs->cs_id;
  335. hlen -= deltaS + 4;
  336. pbuf_header(pb, -hlen);
  337. cp = (u_char *)pb->payload;
  338. *cp++ = changes | NEW_C;
  339. *cp++ = cs->cs_id;
  340. } else {
  341. hlen -= deltaS + 3;
  342. pbuf_header(pb, -hlen);
  343. cp = (u_char *)pb->payload;
  344. *cp++ = changes;
  345. }
  346. *cp++ = deltaA >> 8;
  347. *cp++ = deltaA;
  348. BCOPY(new_seq, cp, deltaS);
  349. INCR(vjs_compressed);
  350. return (TYPE_COMPRESSED_TCP);
  351. /*
  352.  * Update connection state cs & send uncompressed packet (that is,
  353.  * a regular ip/tcp packet but with the 'conversation id' we hope
  354.  * to use on future compressed packets in the protocol field).
  355.  */
  356. uncompressed:
  357. BCOPY(ip, &cs->cs_ip, hlen);
  358. ip->ip_p = cs->cs_id;
  359. comp->last_xmit = cs->cs_id;
  360. return (TYPE_UNCOMPRESSED_TCP);
  361. }
  362. /*
  363.  * Called when we may have missed a packet.
  364.  */
  365. void vj_uncompress_err(struct vjcompress *comp)
  366. {
  367.     comp->flags |= VJF_TOSS;
  368. INCR(vjs_errorin);
  369. }
  370. /*
  371.  * "Uncompress" a packet of type TYPE_UNCOMPRESSED_TCP.
  372.  * Return 0 on success, -1 on failure.
  373.  */
  374. int vj_uncompress_uncomp(
  375. struct pbuf *nb,
  376. struct vjcompress *comp
  377. )
  378. {
  379. register u_int hlen;
  380. register struct cstate *cs;
  381. register struct ip *ip;
  382. ip = (struct ip *)nb->payload;
  383. hlen = getip_hl(*ip) << 2;
  384. if (ip->ip_p >= MAX_SLOTS
  385. || hlen + sizeof(struct tcphdr) > nb->len
  386. || (hlen += getth_off(*((struct tcphdr *)&((char *)ip)[hlen])) << 2)
  387.     > nb->len
  388. || hlen > MAX_HDR) {
  389. PPPDEBUG((LOG_INFO, "vj_uncompress_uncomp: bad cid=%d, hlen=%d buflen=%dn", 
  390. ip->ip_p, hlen, nb->len));
  391. comp->flags |= VJF_TOSS;
  392. INCR(vjs_errorin);
  393. return -1;
  394. }
  395. cs = &comp->rstate[comp->last_recv = ip->ip_p];
  396. comp->flags &=~ VJF_TOSS;
  397. ip->ip_p = IPPROTO_TCP;
  398. BCOPY(ip, &cs->cs_ip, hlen);
  399. cs->cs_hlen = hlen;
  400. INCR(vjs_uncompressedin);
  401. return 0;
  402. }
  403. /*
  404.  * Uncompress a packet of type TYPE_COMPRESSED_TCP.
  405.  * The packet is composed of a buffer chain and the first buffer
  406.  * must contain an accurate chain length.
  407.  * The first buffer must include the entire compressed TCP/IP header. 
  408.  * This procedure replaces the compressed header with the uncompressed
  409.  * header and returns the length of the VJ header.
  410.  */
  411. int vj_uncompress_tcp(
  412. struct pbuf **nb,
  413. struct vjcompress *comp
  414. )
  415. {
  416. u_char *cp;
  417. struct tcphdr *th;
  418. struct cstate *cs;
  419. u_short *bp;
  420. struct pbuf *n0 = *nb;
  421. u32_t tmp;
  422. u_int vjlen, hlen, changes;
  423. INCR(vjs_compressedin);
  424. cp = (u_char *)n0->payload;
  425. changes = *cp++;
  426. if (changes & NEW_C) {
  427. /* 
  428.  * Make sure the state index is in range, then grab the state.
  429.  * If we have a good state index, clear the 'discard' flag. 
  430.  */
  431. if (*cp >= MAX_SLOTS) {
  432. PPPDEBUG((LOG_INFO, "vj_uncompress_tcp: bad cid=%dn", *cp));
  433. goto bad;
  434. }
  435. comp->flags &=~ VJF_TOSS;
  436. comp->last_recv = *cp++;
  437. } else {
  438. /* 
  439.  * this packet has an implicit state index.  If we've
  440.  * had a line error since the last time we got an
  441.  * explicit state index, we have to toss the packet. 
  442.  */
  443. if (comp->flags & VJF_TOSS) {
  444. PPPDEBUG((LOG_INFO, "vj_uncompress_tcp: tossingn"));
  445. INCR(vjs_tossed);
  446. return (-1);
  447. }
  448. }
  449. cs = &comp->rstate[comp->last_recv];
  450. hlen = getip_hl(cs->cs_ip) << 2;
  451. th = (struct tcphdr *)&((u_char *)&cs->cs_ip)[hlen];
  452. th->th_sum = htons((*cp << 8) | cp[1]);
  453. cp += 2;
  454. if (changes & TCP_PUSH_BIT)
  455. th->th_flags |= TCP_PSH;
  456. else
  457. th->th_flags &=~ TCP_PSH;
  458. switch (changes & SPECIALS_MASK) {
  459. case SPECIAL_I:
  460. {
  461. register u32_t i = ntohs(cs->cs_ip.ip_len) - cs->cs_hlen;
  462. /* some compilers can't nest inline assembler.. */
  463. tmp = ntohl(th->th_ack) + i;
  464. th->th_ack = htonl(tmp);
  465. tmp = ntohl(th->th_seq) + i;
  466. th->th_seq = htonl(tmp);
  467. }
  468. break;
  469. case SPECIAL_D:
  470. /* some compilers can't nest inline assembler.. */
  471. tmp = ntohl(th->th_seq) + ntohs(cs->cs_ip.ip_len) - cs->cs_hlen;
  472. th->th_seq = htonl(tmp);
  473. break;
  474. default:
  475. if (changes & NEW_U) {
  476. th->th_flags |= TCP_URG;
  477. DECODEU(th->th_urp);
  478. } else
  479. th->th_flags &=~ TCP_URG;
  480. if (changes & NEW_W)
  481. DECODES(th->th_win);
  482. if (changes & NEW_A)
  483. DECODEL(th->th_ack);
  484. if (changes & NEW_S)
  485. DECODEL(th->th_seq);
  486. break;
  487. }
  488. if (changes & NEW_I) {
  489. DECODES(cs->cs_ip.ip_id);
  490. } else {
  491. cs->cs_ip.ip_id = ntohs(cs->cs_ip.ip_id) + 1;
  492. cs->cs_ip.ip_id = htons(cs->cs_ip.ip_id);
  493. }
  494. /*
  495.  * At this point, cp points to the first byte of data in the
  496.  * packet.  Fill in the IP total length and update the IP
  497.  * header checksum.
  498.  */
  499. vjlen = (u_short)(cp - (u_char*)n0->payload);
  500. if (n0->len < vjlen) {
  501. /* 
  502.  * We must have dropped some characters (crc should detect
  503.  * this but the old slip framing won't) 
  504.  */
  505. PPPDEBUG((LOG_INFO, "vj_uncompress_tcp: head buffer %d too short %dn", 
  506.   n0->len, vjlen));
  507. goto bad;
  508. }
  509. #if BYTE_ORDER == LITTLE_ENDIAN
  510. tmp = n0->tot_len - vjlen + cs->cs_hlen;
  511. cs->cs_ip.ip_len = htons(tmp);
  512. #else
  513. cs->cs_ip.ip_len = htons(n0->tot_len - vjlen + cs->cs_hlen);
  514. #endif
  515. /* recompute the ip header checksum */
  516. bp = (u_short *) &cs->cs_ip;
  517. cs->cs_ip.ip_sum = 0;
  518. for (tmp = 0; hlen > 0; hlen -= 2)
  519. tmp += *bp++;
  520. tmp = (tmp & 0xffff) + (tmp >> 16);
  521. tmp = (tmp & 0xffff) + (tmp >> 16);
  522. cs->cs_ip.ip_sum = (u_short)(~tmp);
  523. /* Remove the compressed header and prepend the uncompressed header. */
  524. pbuf_header(n0, -vjlen);
  525. if(MEM_ALIGN(n0->payload) != n0->payload) {
  526. struct pbuf *np, *q;
  527. u8_t *bufptr;
  528. np = pbuf_alloc(PBUF_RAW, n0->len + cs->cs_hlen, PBUF_POOL);
  529. if(!np) {
  530. PPPDEBUG((LOG_WARNING, "vj_uncompress_tcp: realign failedn"));
  531. *nb = NULL;
  532. goto bad;
  533. }
  534. pbuf_header(np, -cs->cs_hlen);
  535. bufptr = n0->payload;
  536. for(q = np; q != NULL; q = q->next) {
  537. memcpy(q->payload, bufptr, q->len);
  538. bufptr += q->len;
  539. }
  540. if(n0->next) {
  541. pbuf_chain(np, n0->next);
  542. pbuf_dechain(n0);
  543. }
  544. pbuf_free(n0);
  545. n0 = np;
  546. }
  547. if(pbuf_header(n0, cs->cs_hlen)) {
  548. struct pbuf *np;
  549. LWIP_ASSERT("vj_uncompress_tcp: cs->cs_hlen <= PBUF_POOL_BUFSIZE", cs->cs_hlen <= PBUF_POOL_BUFSIZE);
  550. np = pbuf_alloc(PBUF_RAW, cs->cs_hlen, PBUF_POOL);
  551. if(!np) {
  552. PPPDEBUG((LOG_WARNING, "vj_uncompress_tcp: prepend failedn"));
  553. *nb = NULL;
  554. goto bad;
  555. }
  556. pbuf_cat(np, n0);
  557. n0 = np;
  558. }
  559. LWIP_ASSERT("n0->len >= cs->cs_hlen", n0->len >= cs->cs_hlen);
  560. memcpy(n0->payload, &cs->cs_ip, cs->cs_hlen);
  561. *nb = n0;
  562. return vjlen;
  563. bad:
  564. comp->flags |= VJF_TOSS;
  565. INCR(vjs_errorin);
  566. return (-1);
  567. }
  568. #endif