From 013780b1e1942522dfee59d973a341b5f18ace67 Mon Sep 17 00:00:00 2001 From: Kai Blin Date: Tue, 10 Aug 2010 15:32:59 +0200 Subject: ndr: Add support for pulling/printing an ipv6address type --- pidl/lib/Parse/Pidl/Typelist.pm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'pidl/lib/Parse/Pidl/Typelist.pm') diff --git a/pidl/lib/Parse/Pidl/Typelist.pm b/pidl/lib/Parse/Pidl/Typelist.pm index 238ad834a4..b841e62209 100644 --- a/pidl/lib/Parse/Pidl/Typelist.pm +++ b/pidl/lib/Parse/Pidl/Typelist.pm @@ -20,8 +20,8 @@ use strict; my %types = (); my @reference_scalars = ( - "string", "string_array", "nbt_string", - "wrepl_nbt_name", "ipv4address" + "string", "string_array", "nbt_string", + "wrepl_nbt_name", "ipv4address", "ipv6address" ); # a list of known scalar types @@ -57,6 +57,7 @@ my %scalars = ( "nbt_string" => "const char *", "wrepl_nbt_name"=> "struct nbt_name *", "ipv4address" => "const char *", + "ipv6address" => "const char *", "dnsp_name" => "const char *", ); -- cgit