[WinPcap-users] Re: Windows / Visual C: unresolved external symbol pcap_open

2004-12-29 Thread Massimo Sala
From: Vasily Borovyak [EMAIL PROTECTED] You forgot to link wpcap.lib probably. In VC6 Press Alt+F7. Choose Link tab. Add wpcap.lib to the Object/library modules edit box. Vasily, thanks for your answer. I check the reference, it is fine. It is a weird behaviour. The deprecated functions work

RE: [WinPcap-users] Re: Windows / Visual C: unresolved external symbol pcap_open

2004-12-29 Thread Fulvio Risso
-Original Message- From: Massimo Sala [mailto:[EMAIL PROTECTED] Sent: mercoledì 29 dicembre 2004 10.56 To: winpcap-users@winpcap.polito.it Subject: [WinPcap-users] Re: Windows / Visual C: unresolved external symbol pcap_open From: Vasily Borovyak [EMAIL PROTECTED] You forgot

[WinPcap-users] Problems with WinPcap when running application with VS.NET 2003 debugger

2004-12-29 Thread Bernard Haible
I´m using the program below, running as Win32 console application. The WinPcap version is 3.1 beta4 (packet.dll version 3.1.0.24) running on Win2000, SP4. (For clarity, I have removed all stuff not related to WinPcap.) The program runs fine when running stand-alone. However, when running under

Re: [WinPcap-users] Re: Windows / Visual C: unresolved external symbol pcap_open

2004-12-29 Thread Massimo Sala
From: Loris Degioanni [EMAIL PROTECTED] Massimo, did you compile the right version of winpcap? If you go to build-set active configuration, you find several projects. You are probably compiling the one without the new funtions. Loris I am not compiling winpcap, only my little project using

Re: [WinPcap-users] Re: Windows / Visual C: unresolved external symbol pcap_open

2004-12-29 Thread Massimo Sala
From: Massimo Sala [mailto:[EMAIL PROTECTED] When I try to use the new wpcap functions, like pcap_open, pcap_findalldevs_ex, ... I still get unresolved externals symbol. To be sure, I download again the latest wpcapsrc_3_1_beta4.zip and wpdpack_3_1_beta4.zip. From: Fulvio Risso [EMAIL PROTECTED]

[WinPcap-users] old and new features

2004-12-29 Thread Massimo Sala
ciao I appreciate winpcap developers work at Politecnico di Torino. Some questions about old and new features: 1) return codes from winpcap API Just a memo. Starting as a new winpcap developers, I have doubts about APIs return codes. In the help files and the code snippets they look different:

Re: [WinPcap-users] old and new features

2004-12-29 Thread Guy Harris
Massimo Sala wrote: I feel useful to read pcap_major_version() and pcap_minor_version() at the application startup. Unfortunately they require a open pcap_t handle, so I cannot check the version before pcap_open(). Do they really need the handle to work ? Yes. The WinPcap documentation, and the