From Tom Brezinski:
[obnox/wireshark/wip.git] / epan / sna-utils.c
1 /* sna-utils.c
2  * Routines for SNA
3  * Gilbert Ramirez <gram@alumni.rice.edu>
4  *
5  * $Id$
6  *
7  * Wireshark - Network traffic analyzer
8  * By Gerald Combs <gerald@wireshark.org>
9  * Copyright 1998 Gerald Combs
10  *
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.
15  *
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.
20  *
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., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
24  */
25
26 #ifdef HAVE_CONFIG_H
27 # include "config.h"
28 #endif
29
30 #include <string.h>
31
32 #include "packet_info.h"
33 #include "pint.h"
34 #include "sna-utils.h"
35 #include "emem.h"
36
37 gchar *
38 sna_fid_to_str(const address *addr)
39 {
40   gchar *cur;
41
42   cur=ep_alloc(14);
43   sna_fid_to_str_buf(addr, cur, 14);
44   return cur;
45 }
46
47 void
48 sna_fid_to_str_buf(const address *addr, gchar *buf, int buf_len)
49 {
50   const guint8 *addrdata;
51   struct sna_fid_type_4_addr sna_fid_type_4_addr;
52
53   switch (addr->len) {
54
55   case 1:
56     addrdata = addr->data;
57     g_snprintf(buf, buf_len, "%04X", addrdata[0]);
58     break;
59
60   case 2:
61     addrdata = addr->data;
62     g_snprintf(buf, buf_len, "%04X", pntohs(&addrdata[0]));
63     break;
64
65   case SNA_FID_TYPE_4_ADDR_LEN:
66     /* FID Type 4 */
67     memcpy(&sna_fid_type_4_addr, addr->data, SNA_FID_TYPE_4_ADDR_LEN);
68     g_snprintf(buf, buf_len, "%08X.%04X", sna_fid_type_4_addr.saf,
69             sna_fid_type_4_addr.ef);
70     break;
71   }
72 }