winpcap 컴파일에러ㅜ.ㅜ
vc++ 6 환경에서 프로젝트 세팅에 wpcap.lib링크시켰고
c/c++ processor 부분에서 WPCAP,HAVE_REMOTE다 추가시키고
이 소스코드를 컴파일 했는데요..
#include "pcap.h"
main()
{
pcap_if_t *alldevs;
pcap_if_t *d;
int i=0;
char errbuf[PCAP_ERRBUF_SIZE];
/* Retrieve the device list from the local machine */
if (pcap_findalldevs_ex(PCAP_SRC_IF_STRING, NULL /* auth is not needed */, &alldevs, errbuf) == -1)
{
fprintf(stderr,"Error in pcap_findalldevs_ex: %s\n", errbuf);
exit(1);
}
/* Print the list */
for(d= alldevs; d != NULL; d= d->next)
{
printf("%d. %s", ++i, d->name);
if (d->description)
printf(" (%s)\n", d->description);
else
printf(" (No description available)\n");
}
if (i == 0)
{
printf("\nNo interfaces found! Make sure WinPcap is installed.\n");
return;
}
/* We don't need any more the device list. Free it */
pcap_freealldevs(alldevs);
}
왜
:\program files\microsoft visual studio\vc98\include\pcap-stdinc.h(79) : error C2144: syntax error : missing ';' before type 'unsigned int'
c:\program files\microsoft visual studio\vc98\include\pcap-stdinc.h(79) : fatal error C1004: unexpected end of file found
Error executing cl.exe.
getadapter.exe - 2 error(s), 0 warning(s)
에러가 자꾸 뜨는지 모르겠네욤??;;
다른 소스코드를 컴파일 해보아도 다 똑같은 에러가 발생하는데..
WINPCAP세팅이 잘못된건가요.. 아님 뭐가잘못된건지 모르겠네요ㅠㅠ 도움좀 주십삽사리와용
댓글 달기