summaryrefslogtreecommitdiffstats
path: root/epan/dissectors/pidl/frstrans/frstrans.cnf
blob: dccbe3aa2f8fa45e053c96698606491c6f62cbe4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Conformance file for DFS-R / FRSTRANS

TYPE hyper "offset=cnf_dissect_hyper(tvb, offset, pinfo, tree, di, drep, @PARAM@, @HF@);" FT_UINT64 BASE_DEC 0 NULL 8

CODE START

static int
cnf_dissect_hyper(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree, dcerpc_info* di, uint8_t *drep, uint32_t param _U_, int hfindex)
{
	offset = dissect_ndr_uint64(tvb, offset, pinfo, tree, di, drep, hfindex, NULL);

	return offset;
}

CODE END