Wireshark  2.9.0-477-g68ec514b
The Wireshark network protocol analyzer
service_response_time.h
Go to the documentation of this file.
1 /* service_response_time.h
2  * Copied from ui/gtk/service_response_time_table.h, 2003 Ronnie Sahlberg
3  * Helper routines and structs common to all service response time statistics
4  * taps.
5  *
6  * Wireshark - Network traffic analyzer
7  * By Gerald Combs <gerald@wireshark.org>
8  * Copyright 1998 Gerald Combs
9  *
10  * SPDX-License-Identifier: GPL-2.0-or-later
11  */
12 
17 #ifndef __SRT_STATS_H__
18 #define __SRT_STATS_H__
19 
20 #include <epan/timestats.h>
21 #include <epan/srt_table.h>
22 
23 #ifdef __cplusplus
24 extern "C" {
25 #endif /* __cplusplus */
26 
27 enum
28 {
29  SRT_COLUMN_INDEX,
30  SRT_COLUMN_PROCEDURE,
31  SRT_COLUMN_CALLS,
32  SRT_COLUMN_MIN,
33  SRT_COLUMN_MAX,
34  SRT_COLUMN_AVG,
35  SRT_COLUMN_SUM,
36  NUM_SRT_COLUMNS
37 };
38 
40 extern const char* service_response_time_get_column_name(int index);
41 
42 #ifdef __cplusplus
43 }
44 #endif /* __cplusplus */
45 
46 #endif /* __SRT_STATS_H__ */
const char * service_response_time_get_column_name(int index)
Definition: service_response_time.c:16