3 * Gilbert Ramirez <gram@alumni.rice.edu>
7 * Wireshark - Network traffic analyzer
8 * By Gerald Combs <gerald@wireshark.org>
9 * Copyright 1998 Gerald Combs
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License
13 * as published by the Free Software Foundation; either version 2
14 * of the License, or (at your option) any later version.
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
30 #include "packet_info.h"
31 #include "wsutil/pint.h"
32 #include "sna-utils.h"
36 sna_fid_to_str(const address
*addr
)
40 cur
=(gchar
*)ep_alloc(14);
41 sna_fid_to_str_buf(addr
, cur
, 14);
46 sna_fid_to_str_buf(const address
*addr
, gchar
*buf
, int buf_len
)
48 const guint8
*addrdata
;
49 struct sna_fid_type_4_addr sna_fid_type_4_addr
;
54 addrdata
= (guint8
*)addr
->data
;
55 g_snprintf(buf
, buf_len
, "%04X", addrdata
[0]);
59 addrdata
= (guint8
*)addr
->data
;
60 g_snprintf(buf
, buf_len
, "%04X", pntohs(&addrdata
[0]));
63 case SNA_FID_TYPE_4_ADDR_LEN
:
65 memcpy(&sna_fid_type_4_addr
, addr
->data
, SNA_FID_TYPE_4_ADDR_LEN
);
66 g_snprintf(buf
, buf_len
, "%08X.%04X", sna_fid_type_4_addr
.saf
,
67 sna_fid_type_4_addr
.ef
);