Revert "TODO epan/dissectors/asn1/kerberos/packet-kerberos-template.c new GSS flags"
[wireshark-sm.git] / ui / service_response_time.h
blob5a77fd870590f722d3a5b8607857ea66f2808bf3
1 /** @file
3 * Copied from ui/gtk/service_response_time_table.h, 2003 Ronnie Sahlberg
4 * Helper routines and structs common to all service response time statistics
5 * taps.
7 * Wireshark - Network traffic analyzer
8 * By Gerald Combs <gerald@wireshark.org>
9 * Copyright 1998 Gerald Combs
11 * SPDX-License-Identifier: GPL-2.0-or-later
14 /** @file
15 * Helper routines common to all service response time statistics taps.
18 #ifndef __SRT_STATS_H__
19 #define __SRT_STATS_H__
21 #include <epan/timestats.h>
22 #include <epan/srt_table.h>
24 #ifdef __cplusplus
25 extern "C" {
26 #endif /* __cplusplus */
28 enum
30 SRT_COLUMN_INDEX,
31 SRT_COLUMN_PROCEDURE,
32 SRT_COLUMN_CALLS,
33 SRT_COLUMN_MIN,
34 SRT_COLUMN_MAX,
35 SRT_COLUMN_AVG,
36 SRT_COLUMN_SUM,
37 NUM_SRT_COLUMNS
40 /** returns the column name for a given column index */
41 extern const char* service_response_time_get_column_name(int index);
43 #ifdef __cplusplus
45 #endif /* __cplusplus */
47 #endif /* __SRT_STATS_H__ */