Commit d92619a4 authored by Nils Goroll's avatar Nils Goroll

remove the helper which we only needed for shard.key regression testing

parent 98e244d4
Pipeline #428 skipped
......@@ -42,8 +42,6 @@ SYNOPSIS
STRING version()
BLOB uint32blob(INT)
::
......@@ -544,14 +542,6 @@ Example::
std.log("Using VMOD blobdigest version " + blobdigest.version());
.. _func_uint32blob:
BLOB uint32blob(INT)
--------------------
Intentionally undocumented, transitional helper only
REQUIREMENTS
============
......
......@@ -636,13 +636,3 @@ vbe32enc(void *pp, uint32_t u)
p[2] = (u >> 8) & 0xff;
p[3] = u & 0xff;
}
VCL_BLOB
vmod_uint32blob(VRT_CTX, VCL_INT i)
{
uint32_t ui = (uint32_t)i;
uint8_t be[sizeof ui];
vbe32enc(be, ui);
return (VRT_blob(ctx, "uint32blob", be, sizeof be));
}
......@@ -448,10 +448,6 @@ Example::
std.log("Using VMOD blobdigest version " + blobdigest.version());
$Function BLOB uint32blob(INT)
Intentionally undocumented, transitional helper only
REQUIREMENTS
============
......
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