Fix CID 1111814: segment_item is set but not used (in one conditional).
[metze/wireshark/wip.git] / epan / to_str.h
1 /* to_str.h
2  * Definitions for utilities to convert various other types to strings.
3  *
4  * $Id$
5  *
6  * Wireshark - Network traffic analyzer
7  * By Gerald Combs <gerald@wireshark.org>
8  * Copyright 1998 Gerald Combs
9  *
10  * This program is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU General Public License
12  * as published by the Free Software Foundation; either version 2
13  * of the License, or (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23  */
24
25 #ifndef __TO_STR_H__
26 #define __TO_STR_H__
27
28 #include <glib.h>
29
30 #include "wsutil/nstime.h"
31 #include "time_fmt.h"
32 #include <epan/packet_info.h>
33 #include "ws_symbol_export.h"
34
35 #define GUID_STR_LEN 37
36 #define MAX_IP_STR_LEN 16
37 #define MAX_IP6_STR_LEN 40
38 #define MAX_ADDR_STR_LEN 256
39 #define VINES_ADDR_LEN  6
40 #define EUI64_STR_LEN 24
41
42 #ifdef __cplusplus
43 extern "C" {
44 #endif /* __cplusplus */
45
46 /*
47  * These are utility functions which convert various types to strings,
48  * but for which no more specific module applies.
49  */
50
51 struct     e_in6_addr;
52
53 /* !!Deprecated!! - use ep_address_to_str() */
54 #define address_to_str ep_address_to_str
55 WS_DLL_PUBLIC gchar*    ep_address_to_str(const address *);
56 extern gchar*   se_address_to_str(const address *);
57 WS_DLL_PUBLIC void     address_to_str_buf(const address *addr, gchar *buf, int buf_len);
58 WS_DLL_PUBLIC const gchar*   bytestring_to_str(const guint8 *, const guint32, const char);
59 WS_DLL_PUBLIC const gchar*      ether_to_str(const guint8 *);
60 WS_DLL_PUBLIC const gchar*      tvb_ether_to_str(tvbuff_t *tvb, const gint offset);
61 extern const gchar*   ax25_to_str(const guint8 *);
62 extern gchar*   get_ax25_name(const guint8 *);
63 WS_DLL_PUBLIC const gchar*      ip_to_str(const guint8 *);
64 WS_DLL_PUBLIC const gchar*      tvb_ip_to_str(tvbuff_t *tvb, const gint offset);
65 void    ip_to_str_buf(const guint8 *ad, gchar *buf, const int buf_len);
66 extern const gchar*     fc_to_str(const guint8 *);
67 extern gchar*   fcwwn_to_str (const guint8 *);
68 WS_DLL_PUBLIC const gchar*      tvb_fc_to_str(tvbuff_t *tvb, const gint offset);
69 WS_DLL_PUBLIC gchar*    tvb_fcwwn_to_str (tvbuff_t *tvb, const gint offset);
70 WS_DLL_PUBLIC gchar*    ip6_to_str(const struct e_in6_addr *);
71 WS_DLL_PUBLIC gchar*    tvb_ip6_to_str(tvbuff_t *tvb, const gint offset);
72 void    ip6_to_str_buf(const struct e_in6_addr *, gchar *);
73 extern gchar*   ipx_addr_to_str(const guint32, const guint8 *);
74 extern gchar*   ipxnet_to_string(const guint8 *ad);
75 extern gchar*   ipxnet_to_str_punct(const guint32 ad, const char punct);
76 extern gchar*   tvb_vines_addr_to_str(tvbuff_t *tvb, const gint offset);
77 WS_DLL_PUBLIC gchar*    eui64_to_str(const guint64 ad);
78 WS_DLL_PUBLIC gchar*    tvb_eui64_to_str(tvbuff_t *tvb, const gint offset, const guint encoding);
79 WS_DLL_PUBLIC gchar*    time_secs_to_str(const gint32 time_val);
80 gchar*  time_secs_to_str_unsigned(const guint32);
81 WS_DLL_PUBLIC gchar*    time_msecs_to_str(gint32 time_val);
82 WS_DLL_PUBLIC gchar*    abs_time_to_str(const nstime_t*, const absolute_time_display_e fmt,
83     gboolean show_zone);
84 WS_DLL_PUBLIC gchar*    abs_time_secs_to_str(const time_t, const absolute_time_display_e fmt,
85     gboolean show_zone);
86 WS_DLL_PUBLIC void      display_signed_time(gchar *, int, const gint32, gint32, const to_str_time_res_t);
87 WS_DLL_PUBLIC void      display_epoch_time(gchar *, int, const time_t,  gint32, const to_str_time_res_t);
88
89 extern gchar*   guint32_to_str(const guint32 u);
90 extern void     guint32_to_str_buf(guint32 u, gchar *buf, int buf_len);
91
92 WS_DLL_PUBLIC gchar*    rel_time_to_str(const nstime_t*);
93 WS_DLL_PUBLIC gchar*    rel_time_to_secs_str(const nstime_t*);
94 WS_DLL_PUBLIC gchar*    guid_to_str(const e_guid_t*);
95 gchar*  guid_to_str_buf(const e_guid_t*, gchar*, int);
96
97 WS_DLL_PUBLIC char *decode_bits_in_field(const guint bit_offset, const gint no_of_bits, const guint64 value);
98
99 WS_DLL_PUBLIC char      *other_decode_bitfield_value(char *buf, const guint32 val, const guint32 mask,
100     const int width);
101 WS_DLL_PUBLIC char      *decode_bitfield_value(char *buf, const guint32 val, const guint32 mask,
102     const int width);
103 WS_DLL_PUBLIC const char *decode_boolean_bitfield(const guint32 val, const guint32 mask, const int width,
104   const char *truedesc, const char *falsedesc);
105 WS_DLL_PUBLIC const char *decode_numeric_bitfield(const guint32 val, const guint32 mask, const int width,
106   const char *fmt);
107
108 WS_DLL_PUBLIC const gchar* port_type_to_str (port_type type);
109
110 #ifdef __cplusplus
111 }
112 #endif /* __cplusplus */
113
114 #endif /* __TO_STR_H__  */