Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
varnish-cache
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
varnishcache
varnish-cache
Commits
0c041817
Commit
0c041817
authored
Feb 04, 2019
by
Nils Goroll
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
changelog tlc
parent
0fca8adf
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
27 additions
and
0 deletions
+27
-0
changes.rst
doc/changes.rst
+27
-0
No files found.
doc/changes.rst
View file @
0c041817
...
...
@@ -121,6 +121,33 @@ C APIs (for vmod and utility authors)
repsectively. In short, the anchor is now named equal to VCL syntax
for constructors and functions and similarly to VCL syntax for methods.
* VRT API has been updated to 9.0
* ``HTTP_Copy()`` was removed, ``HTTP_Dup()`` and ``HTTP_Clone()`` were added
* Previously, ``VCL_BLOB`` was implemented as ``struct vmod_priv``,
which had the following shortcomings:
* blobs are immutable, but that was not reflected by the ``priv``
pointer
* the existence of a free pointer suggested automatic memory
management, which did never and will not exist for blobs.
The ``VCL_BLOB`` type is now implemented as ``struct vrt_blob``,
with the ``blob`` member replacing the former ``priv`` pointer and
the ``free`` pointer removed.
A ``type`` member was added for lightweight type checking similar
to the miniobject ``magic`` member, but in contrast to it,
``type`` should never be asserted upon.
``VRT_blob()`` was updated accordingly.
* ``req->req_bodybytes`` was removed. Replacement code snippet::
AZ(ObjGetU64(req->wrk, req->body_oc, OA_LEN, &u));
Fixed bugs
----------
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment