aboutsummaryrefslogtreecommitdiffstats
path: root/sharkd_session.c
diff options
context:
space:
mode:
authorJirka Novak <j.novak@netsystem.cz>2021-03-26 18:24:38 +0100
committerWireshark GitLab Utility <gerald+gitlab-utility@wireshark.org>2021-03-27 09:02:14 +0000
commite75e1fb580f3a496309ae1d65c1865fa98262ec5 (patch)
tree695ed57d2e2d1ea9a5ee6129f86ea15b3efbec36 /sharkd_session.c
parentcd5b56823335b4dfd775afe3ee10177f83977bac (diff)
Follow SIP Call: Added Follow SIP Call to Follow menu
Changes: - epan/follow.c: follow_conv_filter_func has new parameter epan_dissect_t *edt, so filter can be generated based on decoded tree of packet below the cursor - menu Follow/SIP Call is enabled when sip packet is selected - value of sip.Call-ID is used as filter for SIP call - for sharkd it generates filter just 'sip.Call-ID' with no value
Diffstat (limited to 'sharkd_session.c')
-rw-r--r--sharkd_session.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sharkd_session.c b/sharkd_session.c
index 6e578cb4ad..be322061fe 100644
--- a/sharkd_session.c
+++ b/sharkd_session.c
@@ -2749,7 +2749,7 @@ sharkd_follower_visit_layers_cb(const void *key _U_, void *value, void *user_dat
const char *layer_proto = proto_get_protocol_short_name(find_protocol_by_id(proto_id));
char *follow_filter;
- follow_filter = get_follow_conv_func(follower)(pi, &ignore_stream, &ignore_sub_stream);
+ follow_filter = get_follow_conv_func(follower)(NULL, pi, &ignore_stream, &ignore_sub_stream);
json_dumper_begin_array(&dumper);
json_dumper_value_string(&dumper, layer_proto);