Commit bcb49e73 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Implement another VEC code



git-svn-id: http://www.varnish-cache.org/svn/trunk/varnish-cache@5731 d4fa192b-c00b-0410-8231-f00ffab90ce4
parent ea6090b2
......@@ -164,6 +164,12 @@ printf("DELIV\n");
printf("SKIP(%d)\n", (int)l);
off += l;
break;
case VEC_S2:
l = vbe16dec(p + 1);
p += 3;
printf("SKIP(%d)\n", (int)l);
off += l;
break;
case VEC_L1:
l = p[1];
p += 2;
......@@ -191,7 +197,7 @@ printf("DELIV\n");
p = r + 1;
break;
default:
printf("XXXX %02x [%c]\n", *p, *p);
printf("XXXX 0x%02x [%s]\n", *p, p);
INCOMPL();
return;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment