summaryrefslogtreecommitdiff
path: root/docbook
diff options
context:
space:
mode:
authorJeff Morriss <jeff.morriss.ws@gmail.com>2015-10-14 22:16:41 -0400
committerAnders Broman <a.broman58@gmail.com>2015-10-15 21:16:43 +0000
commit091c7f10cfd8fcfcb12ebf1eefb1ddb7579438a6 (patch)
tree75df194668dc728607ba44aa1dfa9013651423be /docbook
parentf786ab5eee4053a959a3ddee20cabced52f54e9f (diff)
downloadwireshark-091c7f10cfd8fcfcb12ebf1eefb1ddb7579438a6.tar.gz
Add a couple more API changes in 2.0.
tvb_length() is gone and the RPC API has significant changes. Change-Id: I5276233a08296dfa6e33251a442e0acb3c98b84f Reviewed-on: https://code.wireshark.org/review/11053 Petri-Dish: Anders Broman <a.broman58@gmail.com> Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'docbook')
-rw-r--r--docbook/release-notes.asciidoc8
1 files changed, 7 insertions, 1 deletions
diff --git a/docbook/release-notes.asciidoc b/docbook/release-notes.asciidoc
index 431ba8d4b8..b5d3bc8080 100644
--- a/docbook/release-notes.asciidoc
+++ b/docbook/release-notes.asciidoc
@@ -338,7 +338,13 @@ you want to write dissectors in something other than C, use Lua.
* Heuristic dissectors can now be globally enabled/disabled so
heur_dissector_add() has a few more parameters to make that possible
* proto_tree_add_text has been removed.
-
+* tvb_length() has been removed in favor of tvb_reported_length() and
+tvb_captured_length().
+* The API for RPC-based dissectors has changed significantly: the procedure
+dissectors no longer take an offset, void-argument procedures now need to be
+declared with a function (use dissect_rpc_void()), and rpc_init_prog()
+now handles procedure registration too (it takes additional arguments to
+handle this; rpc_init_proc_table() was removed).
== Getting Wireshark