ANNOUNCEMENT: Live Wireshark University & Allegro Packets online APAC Wireshark Training Session
July 17th, 2024 | 10:00am-11:55am SGT (UTC+8) | Online

Ethereal-dev: Re: [Ethereal-dev] Ethereal 0.8.20/Win32 and giop plugin

Note: This archive is from the project's previous web site, ethereal.com. This list is no longer active.

From: Gilbert Ramirez <gram@xxxxxxxxxxxxxxx>
Date: Wed, 17 Oct 2001 12:46:56 -0500
On Tue, 16 Oct 2001 08:30:51 Frank Singleton wrote:

> Hi,
> 
> I have attached 3 patches to add entries for missing
> get_CDR_xxx accessors.
> 
> patch1.diff - plugin_api.h
> patch2.diff - plugin_api.c
> patch3.diff - plugin_table.h
> 
> I have not compiled on win32 for test however :^)
> 
> Please try it out, and commit if ok.
> 

> +
>  	addr_register_giop_user			p_register_giop_user;
>  	addr_is_big_endian			p_is_big_endian;
> -	addr_get_CDR_string			p_get_CDR_string;
> -	addr_get_CDR_ulong			p_get_CDR_ulong;
> +        addr_get_CDR_encap_info                 p_get_CDR_encap_info;
> +
> +	addr_get_CDR_any			p_get_CDR_any;
> +	addr_get_CDR_boolean			p_get_CDR_boolean;
> +	addr_get_CDR_char			p_get_CDR_char;
> +	addr_get_CDR_double			p_get_CDR_double;
>  	addr_get_CDR_enum			p_get_CDR_enum;

thanks, that was mostly it. I had to define the typedefs for these
new types, but that was easy.

--gilbert