Get rid of extra blanks in strings.
[obnox/wireshark/wip.git] / packet-sna.h
1 /* packet-sna.h
2  * Definitions for SNA dissection.
3  *
4  * $Id: packet-sna.h,v 1.4 2000/08/11 13:34:00 deniel Exp $
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License
8  * as published by the Free Software Foundation; either version 2
9  * of the License, or (at your option) any later version.
10  * 
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  * 
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
19  */
20
21 #ifndef __PACKET_SNA_H__
22 #define __PACKET_SNA_H__
23
24 /*
25  * Structure used to represent an FID Type 4 address; gives the layout of the
26  * data pointed to by an AT_SNA "address" structure if the size is
27  * SNA_FID_TYPE_4_ADDR_LEN.
28  */
29 #define SNA_FID_TYPE_4_ADDR_LEN 6
30 struct sna_fid_type_4_addr {
31         guint32 saf;
32         guint16 ef;
33 };
34
35 /*
36  * Routine to take an SNA FID Type 4 address and generate a string.
37  */
38 extern gchar *sna_fid_type_4_addr_to_str(const struct sna_fid_type_4_addr *addrp);
39
40 #endif