<html>
<head>
<style>
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
FONT-SIZE: 10pt;
FONT-FAMILY:Tahoma
}
</style>
</head>
<body class='hmmessage'>
You are right! sorry, it was a slip-up (I think it say in this way). I think I write upd_header *udp, but now I have checked the code and I have realised my error.<BR>
&nbsp;<BR>
thanks<BR><BR><BR>
<BLOCKQUOTE>
<HR>
From: gianluca.varenni@cacetech.com<BR>To: winpcap-users@winpcap.org<BR>Subject: Re: [Winpcap-users] error compiling udp = (udp_header*)((u_char*)ip +ip_len); <BR>Date: Thu, 13 Mar 2008 15:30:11 -0700<BR><BR>
<META content="Microsoft SafeHTML" name=Generator>
<STYLE>
.ExternalClass .EC_hmmessage P
{padding-right:0px;padding-left:0px;padding-bottom:0px;padding-top:0px;}
.ExternalClass BODY.EC_hmmessage
{font-size:10pt;font-family:Tahoma;}
</STYLE>

<DIV><FONT face="Courier New">you declared udp in the wrong way. you probably wrote</FONT></DIV>
<DIV><FONT face="Courier New"></FONT>&nbsp;</DIV>
<DIV><FONT face="Courier New">...</FONT></DIV>
<DIV><FONT face="Courier New">udp_header udp;</FONT></DIV>
<DIV><FONT face="Courier New">...</FONT></DIV>
<DIV><FONT face="Courier New"></FONT>&nbsp;</DIV>
<DIV><FONT face="Courier New">while it should be</FONT></DIV>
<DIV><FONT face="Courier New"></FONT>&nbsp;</DIV>
<DIV><FONT face="Courier New">udp_header *udp;</FONT></DIV>
<DIV><FONT face="Courier New"></FONT>&nbsp;</DIV>
<DIV><FONT face="Courier New">BTW, the error message from the compiler tells you what you are doing wrong: you are converting a "udp_header*" (the right side of the assignment) to a "udp_header" type (left hand side of the assignment).</FONT></DIV>
<DIV><FONT face="Courier New"></FONT>&nbsp;</DIV>
<DIV><FONT face="Courier New">GV</FONT></DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT face="Courier New"></FONT>&nbsp;</DIV>
<DIV><FONT face="Courier New"></FONT>&nbsp;</DIV>
<BLOCKQUOTE style="PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
<DIV style="FONT: 10pt arial">----- Original Message ----- </DIV>
<DIV style="BACKGROUND: #e4e4e4; FONT: 10pt arial; font-color: black"><B>From:</B> <A title=essence_z@hotmail.com href="mailto:essence_z@hotmail.com">Ziara .</A> </DIV>
<DIV style="FONT: 10pt arial"><B>To:</B> <A title=winpcap-users@winpcap.org href="mailto:winpcap-users@winpcap.org">winpcap</A> </DIV>
<DIV style="FONT: 10pt arial"><B>Sent:</B> Thursday, March 13, 2008 12:00 PM</DIV>
<DIV style="FONT: 10pt arial"><B>Subject:</B> [Winpcap-users] error compiling udp = (udp_header*)((u_char*)ip +ip_len); </DIV>
<DIV><BR></DIV>Hello, i'm compiling my application in builder c++ v6 and when&nbsp;I add:<BR>&nbsp;<BR>u_int ip_len = (ip-&gt;ver_ihl &amp; 0xf) * 4; //Longitud de Ip header<BR>udp = (udp_header*)((u_char*)ip + ip_len);<BR>&nbsp;<BR>where ip_header *ip;<BR>&nbsp;<BR>I have a error in the line number two:<BR>&nbsp;<BR>cannot convert udp_header*&nbsp; to udp_header<BR>&nbsp;<BR>I don't know what happend. Someone know?<BR>&nbsp;<BR>thanks in advanced<BR><BR>
<HR>
Todo ruedas: información práctica y todo el glamour del mundo del motor. <A href="http://estilo.es.msn.com/" target=_blank>MSN Estilo y Tendencias</A> 

<HR>

<P><BR>_______________________________________________<BR>Winpcap-users mailing list<BR>Winpcap-users@winpcap.org<BR>https://www.winpcap.org/mailman/listinfo/winpcap-users<BR></BLOCKQUOTE></BLOCKQUOTE><br /><hr />Sigue los principales acontecimientos deportivos en directo. <a href='http://video.msn.com/video.aspx?mkt=es-es' target='_new'>MSN Motor</a></body>
</html>