Search the web
Sign In
New User? Sign Up
discussion-pcausa · PCAUSA Discussion List
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 6756 - 6785 of 8586   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
6756
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...
Glen
glenfine1952
Offline Send Email
Aug 1, 2005
5:52 pm
6757
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...
Glen
glenfine1952
Offline Send Email
Aug 1, 2005
6:34 pm
6758
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...
rajesh gupta
rajesh_gupta_99
Online Now Send Email
Aug 5, 2005
4:50 pm
6759
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...
pehem_2005
Offline Send Email
Aug 5, 2005
4:50 pm
6760
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...
Gaurav Lochan
g_lochan
Offline Send Email
Aug 5, 2005
5:24 pm
6761
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...
rajesh gupta
rajesh_gupta_99
Online Now Send Email
Aug 5, 2005
7:07 pm
6762
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...
Gaurav Lochan
g_lochan
Offline Send Email
Aug 5, 2005
9:31 pm
6763
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@...
Send Email
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...
Thomas F. Divine
pcatom
Offline Send Email
Aug 7, 2005
4:32 pm
6765
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@...
Send Email
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...
rajat gogri
rajat_go
Offline Send Email
Aug 8, 2005
6:42 am
6767
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 ...
Gaurav Lochan
g_lochan
Offline Send Email
Aug 8, 2005
7:21 am
6768
... 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...
Thomas F. Divine
pcatom
Offline Send Email
Aug 8, 2005
7:30 am
6769
_____ From: discussion-pcausa@yahoogroups.com [mailto:discussion-pcausa@yahoogroups.com] On Behalf Of rajat gogri Sent: Monday, August 08, 2005 2:31 AM To:...
Thomas F. Divine
pcatom
Offline Send Email
Aug 8, 2005
3:35 pm
6770
Hi, I'd like to read a registry value under HKLM\Software\<OurCompany> from inside my IM MUX driver. The Ndis API's to read the registry...
Gaurav Lochan
g_lochan
Offline Send Email
Aug 9, 2005
10:11 pm
6771
_____ From: discussion-pcausa@yahoogroups.com [mailto:discussion-pcausa@yahoogroups.com] On Behalf Of Gaurav Lochan Sent: Tuesday, August 09, 2005 6:10 PM To:...
Thomas F. Divine
pcatom
Offline Send Email
Aug 9, 2005
10:39 pm
6772
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....
tanm32
Offline Send Email
Aug 10, 2005
3:38 am
6773
... 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...
Thomas F. Divine
pcatom
Offline Send Email
Aug 10, 2005
4:29 am
6774
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...
saurabh_c_8380
Offline Send Email
Aug 10, 2005
1:07 pm
6775
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. ...
newwisent
Offline Send Email
Aug 10, 2005
1:07 pm
6776
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 ...
Gaurav Lochan
g_lochan
Offline Send Email
Aug 10, 2005
1:10 pm
6777
... 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...
Thomas F. Divine
pcatom
Offline Send Email
Aug 10, 2005
1:29 pm
6778
... 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...
Thomas F. Divine
pcatom
Offline Send Email
Aug 10, 2005
2:59 pm
6779
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...
Gaurav Lochan
g_lochan
Offline Send Email
Aug 11, 2005
12:54 am
6780
Hi, Thomas Thanks a lot! With your advice, I have resolved my problem. You are the real expert on NDIS. Regards, Wisent ... ...
Zhang Chao
newwisent
Offline Send Email
Aug 11, 2005
11:36 am
6781
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@...
Send Email
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.....
한정준
s982680
Offline Send Email
Aug 11, 2005
2:56 pm
6783
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...
sanjayc.rm
Offline Send Email
Aug 11, 2005
8:48 pm
6784
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...
Gaurav Lochan
g_lochan
Offline Send Email
Aug 12, 2005
12:58 pm
6785
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...
ajithk_2004
Offline Send Email
Aug 12, 2005
12:58 pm
Messages 6756 - 6785 of 8586   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help