- add ipv6.addr for the source and destination addresses (like ipv4)
[obnox/wireshark/wip.git] / packet-kerberos.h
1 /* packet-kerberos.h
2  * Exported routines for Kerberos
3  * Wes Hardaker (c) 2000
4  * wjhardaker@ucdavis.edu
5  *
6  * $Id: packet-kerberos.h,v 1.2 2000/08/11 13:34:19 deniel Exp $
7  *
8  * Ethereal - Network traffic analyzer
9  * By Gerald Combs <gerald@zing.org>
10  * Copyright 1998 Didier Jorand
11  * 
12  * This program is free software; you can redistribute it and/or
13  * modify it under the terms of the GNU General Public License
14  * as published by the Free Software Foundation; either version 2
15  * of the License, or (at your option) any later version.
16  * 
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  * 
22  * You should have received a copy of the GNU General Public License
23  * along with this program; if not, write to the Free Software
24  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
25  */
26
27
28 #ifndef __PACKET_KERBEROS_H__
29 #define __PACKET_KERBEROS_H__
30
31 void dissect_kerberos(const u_char *, int, frame_data *, proto_tree *);
32 void dissect_PrincipalName(char *title, ASN1_SCK *asn1p, frame_data *fd,
33                             proto_tree *tree, int *offset);
34 void dissect_GeneralString(ASN1_SCK *asn1p, guchar **where, guint *item_len,
35                            guint *pkt_len);
36 void dissect_ticket(char *title, ASN1_SCK *asn1p, frame_data *fd,
37                     proto_tree *tree, int *inoff);
38 void dissect_EncryptedData(char *title, ASN1_SCK *asn1p, frame_data *fd,
39                            proto_tree *tree, int *inoff);
40 void dissect_Addresses(char *title, ASN1_SCK *asn1p, frame_data *fd,
41                        proto_tree *tree, int *inoff);
42
43
44 #endif
45