Re: [WinPcap-users] PROBLEM WITH BUILDING A BRIDGE

2005-04-26 Thread Ben Greear
I am not receiving email from the mailing list currently, for some reason. Please CC me directly as well... > Hello, > I use winpcap 2.3 for this, tell me if you need this version to build your > bridge to send you the npf.sys modified, I dont know if this winpcap 2.3 > works with windows xp but i

Re: [WinPcap-users] PROBLEM WITH BUILDING A BRIDGE

2005-04-25 Thread David Rodriguez
ear" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>; Sent: Sunday, April 24, 2005 04:41 PM Subject: Re: [WinPcap-users] PROBLEM WITH BUILDING A BRIDGE > Hello! > > I also am trying to write a bridge. From your email discussion, > it appears you had to modify winpcap to ge

Re: [WinPcap-users] PROBLEM WITH BUILDING A BRIDGE

2005-04-24 Thread Ben Greear
Hello! I also am trying to write a bridge. From your email discussion, it appears you had to modify winpcap to get it to not receive the packet that you just transmitted. I hope to get this working on at least Win2k and WinXP, though WinXP is the highest priority. If so, do you have a packaged ve

Re: [WinPcap-users] PROBLEM WITH BUILDING A BRIDGE

2005-02-23 Thread David Rodriguez
windows 2000 and xp, I built several nice applications with this. David Rodriguez - Original Message - From: "Bowers, Rick" <[EMAIL PROTECTED]> To: Sent: Tuesday, February 22, 2005 06:50 PM Subject: RE: [WinPcap-users] PROBLEM WITH BUILDING A BRIDGE Thanks for the su

RE: [WinPcap-users] PROBLEM WITH BUILDING A BRIDGE

2005-02-23 Thread David Barnish
, February 22, 2005 5:50 PM To: winpcap-users@winpcap.polito.it Subject: RE: [WinPcap-users] PROBLEM WITH BUILDING A BRIDGE Thanks for the suggestion. I see pcap_open_live(), that is called by pcap_open(), calls PacketSetHwFilter() with either NDIS_PACKET_TYPE_PROMISCUOUS or NDIS_PACKET_TYPE_ALL_LOC

RE: [WinPcap-users] PROBLEM WITH BUILDING A BRIDGE

2005-02-22 Thread Bowers, Rick
Thanks for the suggestion. I see pcap_open_live(), that is called by pcap_open(), calls PacketSetHwFilter() with either NDIS_PACKET_TYPE_PROMISCUOUS or NDIS_PACKET_TYPE_ALL_LOCAL depending on whether it was asked to run in promiscuous mode. From ntddndis.h the only NDIS_PACKET* defines are: // /

RE: [WinPcap-users] PROBLEM WITH BUILDING A BRIDGE

2005-02-22 Thread David Barnish
I don't have all the details in my head right now, but I believe you need to tell NDIS to ignore loopback packets. You should be able to do this with the PacketSetHWFilter() function call. In this way, outgoing packets will be ignored by the instance of the adapter you have open. Thank you, D