Huge thanks to our Platinum Members Endace and LiveAction,
and our Silver Member Veeam, for supporting the Wireshark Foundation and project.

Ethereal-dev: Re: [Ethereal-dev] Ethereal addition for analysing RTP data

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

From: Guy Harris <guy@xxxxxxxxxx>
Date: Thu, 6 Mar 2003 15:37:28 -0800
On Thu, Mar 06, 2003 at 04:31:05PM -0700, Greg Morris wrote:
> Perhaps I'm a little early and the new changes are not complete from CVS
> but...
>  
> I now get the following error 
>  
> tap_rtp.c
> tap_rtp.c(147) : error C2059: syntax error : '('

That line should be

	NO_DATA

If so, try replacing all occurances of "NO_DATA" in the file with
"TAP_RTP_NO_DATA" and see if that fixes things - it might be that, when
building on Windows with MSVC++, NO_DATA is #defined to be a macro with
parentheses in it (e.g., something that expands to a function call), in
which case we'd need a name other than NO_DATA.