aboutsummaryrefslogtreecommitdiffstats
path: root/capture_wpcap_packet.c
AgeCommit message (Collapse)AuthorFilesLines
2007-01-08fix compilation for:Ulf Lamping1-3/+2
- Visual Studio .NET (2002) - Visual Studio .NET 2003 svn path=/trunk/; revision=20349
2007-01-06fix sockaddr_storage problem for MSVC 7.1 (hmmm, maybe it's a platform SDK ↵Ulf Lamping1-4/+6
issue - time will tell) svn path=/trunk/; revision=20331
2007-01-02MSVC2006 defines sockaddr_storage, so we shouldn't define this on our own ↵Ulf Lamping1-0/+7
for MSVC2006 this might be depending on the Platform SDK and not on MSVC version - I don't really know svn path=/trunk/; revision=20259
2006-05-31Tethereal/tethereal -> TShark/tshark.Gerald Combs1-1/+1
svn path=/trunk/; revision=18268
2006-05-28Ethereal->WiresharkAnders Broman1-1/+1
svn path=/trunk/; revision=18235
2006-05-21name changeRonnie Sahlberg1-2/+2
svn path=/trunk/; revision=18197
2006-04-25copy input data into the buffer given to PacketRequest(), so functions with ↵Ulf Lamping1-0/+1
input parameters will also work svn path=/trunk/; revision=17986
2006-04-10fix #868: don't assert but simply ignore values that don't have the proper sizeUlf Lamping1-4/+2
svn path=/trunk/; revision=17845
2005-09-20fix a compiler warning (... copied from RFC2553 :-)Ulf Lamping1-1/+1
svn path=/trunk/; revision=15890
2005-09-20the buildbot has a problem not knowing sa_family_t, define eth_sa_family_t ↵Ulf Lamping1-4/+7
and use it here (ok, this *is* a dirty hack) don't know why the last commit compiled on my machine and not on the buildbot. svn path=/trunk/; revision=15887
2005-09-19fix #340: define the missing sockaddr_storage struct to be able to use ↵Ulf Lamping1-0/+39
Packet32.h even with WinPcap 3.1 and without the platform SDK svn path=/trunk/; revision=15878
2005-05-21don't crash if packet.dll is not available, add some more packet.dll version ↵Ulf Lamping1-1/+3
numbers svn path=/trunk/; revision=14414
2005-05-21as suggested by Loris: add wpcap_packet_get_version() and check the ↵Ulf Lamping1-3/+15
packet.dll version before using it (very restrictive for now, will check for exact DLL version strings). If version is unknown, ask user to continue or not. svn path=/trunk/; revision=14411
2005-05-21don't use LPADAPTER but simply void * as we don't need to look inside the ↵Ulf Lamping1-8/+8
members of this struct svn path=/trunk/; revision=14408
2005-05-20win32 only: get interface details from WinPcap's packet.dll (direct access ↵Ulf Lamping1-0/+252
to NDIS specific driver information, lower first part) svn path=/trunk/; revision=14406