summaryrefslogtreecommitdiff
path: root/epan/tap.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2004-12-30 02:10:24 +0000
committerGuy Harris <guy@alum.mit.edu>2004-12-30 02:10:24 +0000
commit0ccf418724aa221c786e8ac765a8cbe1fed8ac3d (patch)
tree1e4a380da3f190a7468ee2baa824b4e1ff58ac67 /epan/tap.h
parent9d5c8771c1560425077117b33a06a9e8263062a9 (diff)
downloadwireshark-0ccf418724aa221c786e8ac765a8cbe1fed8ac3d.tar.gz
Add a "get_addr_name()" routine that takes an "address *" and attempts
to resolve it to a name. Fix up some const-pointer-to-non-const-pointer, and function-pointer-to-void-*, conversions. Fix some comments. svn path=/trunk/; revision=12863
Diffstat (limited to 'epan/tap.h')
-rw-r--r--epan/tap.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/tap.h b/epan/tap.h
index 491ed3cae5..4ecb1fb91d 100644
--- a/epan/tap.h
+++ b/epan/tap.h
@@ -40,7 +40,7 @@ typedef void (*tap_draw_cb)(void *tapdata);
extern void tap_init(void);
extern int register_tap(char *name);
extern int find_tap_id(char *name);
-extern void tap_queue_packet(int tap_id, packet_info *pinfo, void *tap_specific_data);
+extern void tap_queue_packet(int tap_id, packet_info *pinfo, const void *tap_specific_data);
extern void tap_queue_init(epan_dissect_t *edt);
extern void tap_push_tapped_queue(epan_dissect_t *edt);
extern void reset_tap_listeners(void);