We are using the PCAUSA package, and I have developed an application that in essence is supposed to be 'bridging' two NICs, and inspecting the traffic that...
UPDATE !! If I set NIC #2 to 192.168.1.143, the AP to 192.168.1.144, and the subnet (on the other side of the AP) to 192.168.123.xxx it works !! the 123.xxx...
All, I am writting a bridge NDIS driver. I have two virtual network adapter over one physical adapter. I want to build a bridge between these two virtual...
I add some code to PtReceive, the code copy the data to pPacket and change the target MAC, then call NdisSend to send my packet. the problem is that when call...
I looked at the callstack and it seems like you're sending the packet back on your loopback which is causing it to come back to your driver and loop again and...
I have driver verifier enabled for my driver. But i do not see any change in the counters. My drivers is loaded and i have confirmed it with WinDBG. Driver...
There are a couple of things that look wrong with this, I'm not sure which one is causing the problem. The first thing you need when developing NDIS drivers is...
I found that the support for EAP (ether Type 0x888e) was not there in original code, and the packets were being passed up the stack. So I did some changes to...
Pore, Ravi R
Ravi.Pore@...
Aug 7, 2005 3:07 pm
6764
You need to use WinDbg to step through the offending code and identify the problem. Good luck, Thomas F. Divine...
I analyzed the crash dump using WinDBG and found that the offending
function is NdisInterlockedInsertTailList(), which works fine for
non-EAP packets. But for...
Pore, Ravi R
Ravi.Pore@...
Aug 8, 2005 6:38 am
6766
Hello, I am trying to set physical parameter for my wireless adaptor(DLink DWL-G122) using WRAPI but i am unable to do the same. so i am thinking of directly...
It looks like you're accessing an invalid address Arg1: 0000001c, memory referenced In WinDBG, open the "call stack" window and click on your stack entry ...
... The PCAUSA samples do use a structure that includes a LIST_ENTRY as the first field. So that isn't the problem in this case. I think that the cause is that...
_____ From: discussion-pcausa@yahoogroups.com [mailto:discussion-pcausa@yahoogroups.com] On Behalf Of rajat gogri Sent: Monday, August 08, 2005 2:31 AM To:...
Hi,everyone I follow the sample of ExtendPassthru(SET_IPv4_BLOCK_FILTER) to communicate with application layer. I add my own variable uid into struct _ADAPT....
... Ming, Sorry, but you haven't given enough information to for anyone to help you. If you were talking about an automobile it's like saying "The car starts...
Hi, I am trying to capture data coming from SMS/MMS onto my phone enabled pocket pc. For this, I am trying to use NDIS IM driver but I am stuck up at certain...
Hi, all I have gotten the list of Adapter Devices in the my PC using IOCTL_NDISUIO_QUERY_BINDING. I also want to know if an adapter in the list is wireless. ...
Hi, I've spent a while trying to get to the root of this, but haven't fixed it. I know its almost impossible for someone else to debug this without the code ...
... Make the NDIS query for OID_GEN_PHYSICAL_MEDIUM. An 802.11 adapter should return NdisMediumWirelessLan. Non-802.11 adapters will probably fail this query...
... It is hard to say what's the problem. I assume that when you indicate your modified packets that you use your own freshly-allocated NDIS packet descriptor...
Thanks for the mail. I'm actually doing both of those things as you suggested, (its good to have my design decisions validated): - I'm using my own packet...
Hello all, I'm developing a simple wi-fi application that scans and sets a SSID. This application is working on all the laptops that I tried out, except for ...
Avinash Agarwal
aagarwal@...
Aug 11, 2005 2:56 pm
6782
Hi.. All I have a question. I want to change the different AP by BSSID. But this AP has the same SSID. How to do it???? Thanks.....
Hi, I am trying ot intercept ICMP echo requests in TDIPASSL by enabling the IP filter device. I see the packets while debugging. Does anyone know what format...
Incidentally, I found the problem. I was calling NdisReturnPacket, in a function that was common to PtReceive and PtReceivePacket. I need to call it only when...
Hi everybody, Can any one advice me, whether TDI filter concept is available in windows CE?. I mean can I use advanced TDI filter sample to make a filter in...