summaryrefslogtreecommitdiff
path: root/pidl/lib/Parse/Pidl/NDR.pm
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2009-09-17 09:10:21 -0700
committerAndrew Tridgell <tridge@samba.org>2009-09-17 15:19:28 -0700
commitdb5e7f3d053ecedd985be518f2080f4061ed06e5 (patch)
treed48c8a8f4b56189832752b7436c1947065fc4bb7 /pidl/lib/Parse/Pidl/NDR.pm
parentc9b0b89cc06531cb57f89b9f98d33d6e0c300957 (diff)
downloadsamba-db5e7f3d053ecedd985be518f2080f4061ed06e5.tar.gz
samba-db5e7f3d053ecedd985be518f2080f4061ed06e5.tar.bz2
samba-db5e7f3d053ecedd985be518f2080f4061ed06e5.zip
s4-pidl: add support for NDR64
Added support for NDR64 to the samba4 pidl generator
Diffstat (limited to 'pidl/lib/Parse/Pidl/NDR.pm')
-rw-r--r--pidl/lib/Parse/Pidl/NDR.pm5
1 files changed, 4 insertions, 1 deletions
diff --git a/pidl/lib/Parse/Pidl/NDR.pm b/pidl/lib/Parse/Pidl/NDR.pm
index a36f638092..7aebed0fe2 100644
--- a/pidl/lib/Parse/Pidl/NDR.pm
+++ b/pidl/lib/Parse/Pidl/NDR.pm
@@ -363,7 +363,10 @@ sub find_largest_alignment($)
my $a = 1;
if ($e->{POINTERS}) {
- $a = 4;
+ # this is a hack for NDR64
+ # the NDR layer translates this into
+ # an alignment of 4 for NDR and 8 for NDR64
+ $a = 5;
} elsif (has_property($e, "subcontext")) {
$a = 1;
} elsif (has_property($e, "transmit_as")) {