diff options
author | Michael Mann <mmann78@netscape.net> | 2018-12-27 11:34:09 -0500 |
---|---|---|
committer | Anders Broman <a.broman58@gmail.com> | 2018-12-29 08:16:01 +0000 |
commit | 785621dcca96d3e735c4a6dc2da31c44238e1eb9 (patch) | |
tree | def08e8b30753bf281ce049582bfc4409e3095ed /capchild/capture_sync.h | |
parent | d68a8a36054a26e520647a9402e9e405efd8cf3e (diff) |
Add interface name when outputting packets dropped.
Add interface name (colon delimited) to SP_DROPS ('D') message so when dropped
packets are outputted, they include the interface name for clarity.
Bug: 13498
Change-Id: I68cdde4f20a574580f089dc5096d815cde5d3357
Reviewed-on: https://code.wireshark.org/review/31218
Petri-Dish: Michael Mann <mmann78@netscape.net>
Tested-by: Petri Dish Buildbot
Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'capchild/capture_sync.h')
-rw-r--r-- | capchild/capture_sync.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/capchild/capture_sync.h b/capchild/capture_sync.h index 2da20e4864..c0fdc1d72f 100644 --- a/capchild/capture_sync.h +++ b/capchild/capture_sync.h @@ -121,7 +121,7 @@ capture_input_new_packets(capture_session *cap_session, int to_read); * Capture child told us how many dropped packets it counted. */ extern void -capture_input_drops(capture_session *cap_session, guint32 dropped); +capture_input_drops(capture_session *cap_session, guint32 dropped, char* interface_name); /** * Capture child told us that an error has occurred while starting the capture. |