<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=utf-8">
<STYLE>.hmmessage P {
        PADDING-RIGHT: 0px; PADDING-LEFT: 0px; PADDING-BOTTOM: 0px; MARGIN: 0px; PADDING-TOP: 0px
}
BODY.hmmessage {
        FONT-SIZE: 10pt; FONT-FAMILY: Tahoma
}
</STYLE>

<META content="MSHTML 6.00.6000.16544" name=GENERATOR></HEAD>
<BODY class=hmmessage bgColor=#ffffff>
<DIV><FONT face="Courier New">That line doesn't have anything to do with WinPcap 
(that file is part of either the Microsoft Platform SDK or the Builder C++ 
header files). I'm actually quite surprised that a system include file spits out 
such a warning.</FONT></DIV>
<DIV><FONT face="Courier New"></FONT>&nbsp;</DIV>
<DIV><FONT face="Courier New">Regarding the issue of the application opening and 
closing immediately, have you debugged it? If you read the code, it needs a 
trace file name as first command line parameter. And then the sample reads the 
packets from the trace file and prints the length and timestamp of each packet 
in the file.</FONT></DIV>
<DIV><FONT face="Courier New"></FONT>&nbsp;</DIV>
<DIV><FONT face="Courier New">Have a nice day</FONT></DIV>
<DIV><FONT face="Courier New">GV</FONT></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-users@winpcap.org</A> </DIV>
  <DIV style="FONT: 10pt arial"><B>Sent:</B> Monday, November 26, 2007 6:56 
  AM</DIV>
  <DIV style="FONT: 10pt arial"><B>Subject:</B> RE: [Winpcap-users] unexpected 
  warning</DIV>
  <DIV><BR></DIV>Hi again! yes, I read the winpcap FAQ and in this says that I 
  have to convert wpcap.lib and packet.lib from coff format to omf format to use 
  in Builder c++, and I think I obtain this.<BR>&nbsp;<BR>But when I compile a 
  example, It appear this warning, and the content of line 786 in wspiapi.h 
  is:<BR>&nbsp;<BR>if ((iFlags &amp; NI_NOFQDN) &amp;&amp; (pc = strchr(pszNode, 
  '.')))<BR>&nbsp;<BR>With this warning I can build the .exe file I don't know 
  very well what's the meaning of the example, because when a run this .exe 
  file, a ms-dos windows is opened and in a second it's closed, and I don't know 
  what's is happened.<BR>&nbsp;<BR>this is the example:<BR>&nbsp;<BR>void 
  dispatcher_handler(u_char *, const struct pcap_pkthdr *, const u_char 
  *);<BR>main(int argc, char **argv)<BR>{<BR>&nbsp;pcap_t *fp;<BR>&nbsp;char 
  errbuf[PCAP_ERRBUF_SIZE];<BR>&nbsp;<BR>&nbsp;if(argc != 
  2)<BR>&nbsp;{<BR>&nbsp;&nbsp;printf("usage: %s filename", 
  argv[0]);<BR>&nbsp;&nbsp;return -1;<BR>&nbsp;}<BR>&nbsp;<BR>&nbsp;/* Open the 
  capture file */<BR>&nbsp;if ((fp = 
  pcap_open_offline(argv[1],&nbsp;&nbsp;&nbsp;// name of the 
  device<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
  errbuf&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;// error 
  buffer<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; )) == 
  NULL)<BR>&nbsp;{<BR>&nbsp;&nbsp;fprintf(stderr,"\nUnable to open the file 
  %s.\n", argv[1]);<BR>&nbsp;&nbsp;return -1;<BR>&nbsp;}<BR>&nbsp;/* read and 
  dispatch packets until EOF is reached */<BR>&nbsp;pcap_loop(fp, 0, 
  dispatcher_handler, NULL);<BR>&nbsp;pcap_close(fp);<BR>&nbsp; 
  system("pause");<BR><BR>&nbsp;return 0;<BR>}<BR>&nbsp;<BR>void 
  dispatcher_handler(u_char *temp1,<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;const 
  struct pcap_pkthdr *header,<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;const 
  u_char *pkt_data)<BR>{<BR>&nbsp;u_int i=0;<BR>&nbsp;/* print pkt timestamp and 
  pkt len */<BR>&nbsp;printf("%ld:%ld (%ld)\n", header-&gt;ts.tv_sec, 
  header-&gt;ts.tv_usec, header-&gt;len);<BR>&nbsp;/* Print the packet 
  */<BR>&nbsp;for (i=1; (i &lt; header-&gt;caplen + 1 ) ; 
  i++)<BR>&nbsp;{<BR>&nbsp;&nbsp;printf("%.2x ", 
  pkt_data[i-1]);<BR>&nbsp;&nbsp;if ( (i % LINE_LEN) == 0) 
  printf("\n");<BR>&nbsp;}<BR>&nbsp;printf("\n\n");<BR>}<BR>&nbsp;<BR>&nbsp;<BR><BR><BR>&nbsp;<BR>
  <BLOCKQUOTE>
    <HR>
    From: gianluca.varenni@cacetech.com<BR>To: 
    winpcap-users@winpcap.org<BR>Subject: Re: RE:[Winpcap-users] unexpected 
    warning<BR>Date: Fri, 23 Nov 2007 09:00:57 -0800<BR><BR>
    <META content="Microsoft SafeHTML" name=Generator>
    <DIV><FONT face="Courier New" size=2>The WinPcap developer's 
    pack&nbsp;doesn't official support the Borland C++ environment, so I'm just 
    trying to guess what's going on.</FONT></DIV>
    <DIV><FONT face="Courier New" size=2></FONT>&nbsp;</DIV>
    <DIV><FONT face="Courier New" size=2>What's the content of line 786 in 
    wspiapi.h? That header file is a system include file (i.e. it doesn't come 
    with WinPcap), so it's quite weird that the compiler spits out a warning on 
    that file.</FONT></DIV>
    <DIV><FONT face="Courier New" size=2></FONT>&nbsp;</DIV>
    <DIV><FONT face="Courier New" size=2>Have a nice day</FONT></DIV>
    <DIV><FONT face="Courier New" size=2>GV</FONT></DIV>
    <DIV>&nbsp;</DIV>
    <DIV><FONT face="Courier New" size=2></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=nechoe_cn@sina.com 
      href="mailto:nechoe_cn@sina.com">nechoe_cn@sina.com</A> </DIV>
      <DIV style="FONT: 10pt arial"><B>To:</B> <A 
      title=winpcap-users@winpcap.org 
      href="mailto:winpcap-users@winpcap.org">winpcap-users@winpcap.org</A> 
      </DIV>
      <DIV style="FONT: 10pt arial"><B>Sent:</B> Thursday, November 22, 2007 
      4:34 PM</DIV>
      <DIV style="FONT: 10pt arial"><B>Subject:</B> RE:[Winpcap-users] 
      unexpected warning</DIV>
      <DIV><BR></DIV><BR>----- Original Message 
      -----<BR>From:Ziara&nbsp;.&nbsp;<BR>To:<BR>Subject:[Winpcap-users]&nbsp;unexpected&nbsp;warning<BR>Date:07-11-23 
      02:15:39<BR><BR>
      <STYLE>
.ExternalClass .EC_hmmessage P
{padding-right:0px;padding-left:0px;padding-bottom:0px;padding-top:0px;}
.ExternalClass EC_BODY.hmmessage
{font-size:10pt;font-family:Tahoma;}
</STYLE>
      Hello, I'm now in this.. I'm using winpcap with builder c++ and when I 
      build one example, it appear one warning said: <BR>&nbsp;<BR>(C++ Warning) 
      wspiapi.h(786): W8060 Possibly incorrect assignment<BR>&nbsp;<BR>and, I 
      don't know why??<BR>&nbsp;<BR>&nbsp;<BR><BR>
      <HR>
      Express yourself instantly with MSN Messenger! <A 
      href="http://clk.atdmt.com/AVE/go/onm00200471ave/direct/01/" 
      target=_blank>MSN Messenger</A> 
      _______________________________________________ Winpcap-users mailing list 
      Winpcap-users@winpcap.org <A 
      href="https://www.winpcap.org/mailman/listinfo/winpcap-users" 
      target=_blank>https://www.winpcap.org/mailman/listinfo/winpcap-users</A> 
      <P><BR>&nbsp;<BR>sorry,i did not study builder 
      c++~<BR><BR><BR>-------------------------------------------------------------------<BR>贺金山上市 
      毒霸历史最低价 25元半年( <A 
      href="http://d1.sina.com.cn/sina/limeng3/mail_zhuiyu/2007/mail_zhuiyu_20071112.html" 
      target=_blank>http://d1.sina.com.cn/sina/limeng3/mail_zhuiyu/2007/mail_zhuiyu_20071112.html</A> 
      )<BR><BR>===================================================================<BR>看股票最新行情,与大家分享讨论,新浪财经吧火热上线!( 
      <A href="http://bar.sina.com.cn/channel.php?chid=1" 
      target=_blank>http://bar.sina.com.cn/channel.php?chid=1</A> ) 
      <HR>

      <P><BR>_______________________________________________<BR>Winpcap-users 
      mailing 
      list<BR>Winpcap-users@winpcap.org<BR>https://www.winpcap.org/mailman/listinfo/winpcap-users<BR></P></BLOCKQUOTE></BLOCKQUOTE><BR>
  <HR>
  Tecnología, moda, motor, viajes,…suscríbete a nuestros boletines para estar a 
  la última <A 
  href="http://newsletters.msn.com/hm/maintenanceeses.asp?L=ES&amp;C=ES&amp;P=WCMaintenance&amp;Brand=WL&amp;RU=http%3a%2f%2fmail.live.com" 
  target=_new>MSN Newsletters</A> 
  <P>
  <HR>

  <P></P>_______________________________________________<BR>Winpcap-users 
  mailing 
  list<BR>Winpcap-users@winpcap.org<BR>https://www.winpcap.org/mailman/listinfo/winpcap-users<BR></BLOCKQUOTE></BODY></HTML>