Don't let the user specify a maximum capture file size if they're not
[obnox/wireshark/wip.git] / packet-dcerpc-nt.h
1 /* packet-dcerpc-nt.h
2  * Routines for DCERPC over SMB packet disassembly
3  * Copyright 2001, Tim Potter <tpot@samba.org>
4  *
5  * $Id: packet-dcerpc-nt.h,v 1.1 2001/12/16 20:17:10 guy Exp $
6  *
7  * Ethereal - Network traffic analyzer
8  * By Gerald Combs <gerald@ethereal.com>
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 #ifndef __PACKET_DCERPC_NT_H
27 #define __PACKET_DCEPRC_NT_H
28
29 /* Routines for parsing simple types */
30
31 int prs_align(int offset, int n);
32
33 int prs_uint8(tvbuff_t *tvb, int offset, packet_info *pinfo,
34               proto_tree *tree, guint8 *data, char *name);
35
36 int prs_uint8s(tvbuff_t *tvb, int offset, packet_info *pinfo,
37                proto_tree *tree, int count, guint8 **data, char *name);
38
39 int prs_uint16(tvbuff_t *tvb, int offset, packet_info *pinfo,
40                proto_tree *tree, guint16 *data, char *name);
41
42 int prs_uint16s(tvbuff_t *tvb, int offset, packet_info *pinfo,
43                 proto_tree *tree, int count, guint16 **data, char *name);
44
45 int prs_uint32(tvbuff_t *tvb, int offset, packet_info *pinfo,
46                proto_tree *tree, guint32 *data, char *name);
47
48 int prs_uint32s(tvbuff_t *tvb, int offset, packet_info *pinfo,
49                 proto_tree *tree, int count, guint32 **data, char *name);
50
51 /* Parse NT status code */
52
53 int prs_ntstatus(tvbuff_t *tvb, int offset, packet_info *pinfo,
54                  proto_tree *tree);
55
56 /* Parse some common RPC structures */
57
58 int prs_UNISTR2(tvbuff_t *tvb, int offset, packet_info *pinfo,
59                 proto_tree *tree, int flags, char **data, char *name);
60
61 int prs_policy_hnd(tvbuff_t *tvb, int offset, packet_info *pinfo, 
62                    proto_tree *tree);
63
64 /* Routines for handling deferral of referants in NDR */
65
66 #define PARSE_SCALARS 1
67 #define PARSE_BUFFERS 2
68
69 int prs_push_ptr(tvbuff_t *tvb, int offset, packet_info *pinfo,
70                  proto_tree *tree, GList **ptr_list, char *name);
71
72 guint32 prs_pop_ptr(GList **ptr_list, char *name);
73
74 #endif /* packet-dcerpc-nt.h */