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...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

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 2558 - 2587 of 8586   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2558
Sorry I didn't make it clear I needed approach from user mode app. But I got solution already! We can detect device insertion or removal events using...
Vladislovas Razas
vladis@...
Send Email
Apr 1, 2003
1:29 pm
2559
I have tested traffic again for getting kernel/user transition 1. Using this program, I have configured the program as to use one adapter and performed the...
godsyang
Offline Send Email
Apr 1, 2003
2:11 pm
2560
Hi I am programming a utility on for Wireless LAN Card(CardBus). But I got some problems on Windows 98SE. I need somebody's help. Please give me a hand. I use...
Alex Kuo
alex9662
Offline Send Email
Apr 1, 2003
5:10 pm
2561
Windows 98SE has problems. At the NDIS level it will actually let successfully open a handle to an adapter that is not even present in the system. It only...
Thomas F. Divine
pcatom
Offline Send Email
Apr 1, 2003
5:21 pm
2562
Doh :( I made mistake while debugging. It doesn't work. WM_DEVICECHANGE by default only sent on events like CD, DVD insertion-removal. There was an option to...
Vladislovas Razas
vladis@...
Send Email
Apr 1, 2003
9:30 pm
2563
Hi, Send packet path: consider an application using blocking send call for udp packets. also imagine that i have my IM filter installed. what is the trace of...
A K A
gello666
Offline Send Email
Apr 2, 2003
6:24 am
2564
assume that we insert an IM filter into the packet path and the maximum loss free packet sending rate drops from X Kpps to Y Kpps, then what do we associate ...
A K A
gello666
Offline Send Email
Apr 2, 2003
6:30 am
2565
Don't know for sure. Certainly there is more work involved when an NDIS IM driver is in the path. At a minimum the NDIS IM driver must allocate resources to...
Thomas F. Divine
pcatom
Offline Send Email
Apr 2, 2003
6:42 am
2566
The figure at this URL may help: <http://ndis.com/papers/winpktfilter.htm> In the case of UDP the TCPIP.sys driver is probably the place where the datagram...
Thomas F. Divine
pcatom
Offline Send Email
Apr 2, 2003
6:42 am
2567
Any comments on whether the NdisMSendPackets and NdisPReceivePakcet function are called as a part of a DPC? thanks, Asad ...
A K A
gello666
Offline Send Email
Apr 2, 2003
10:29 pm
2568
Hi all, ... first off thanks for the link to nice diagram. ... when does a blocking send() call return?--after the NdisSend operation has completed? Logically...
A K A
gello666
Offline Send Email
Apr 2, 2003
10:39 pm
2569
MiniportSendPackets is called at IRQL <= DISPATCH_LEVEL. ProtocolReceivePacket is called at IRQL == DISPATCH_LEVEL. ProtocolReceivePacket could be called as...
Thomas F. Divine
pcatom
Offline Send Email
Apr 3, 2003
3:15 am
2570
Hey there: A while ago I posted a couple of messages regarding my NDIS network driver. One of my questions was related to why was the MAC address not showing...
fener0012003
Offline Send Email
Apr 3, 2003
2:43 pm
2571
Make sure that you are providing the MAC address information to OID_802_3_PERMANENT_ADDRESS and OID_802_3_CURRENT_ADDRESS in the MiniportQueryInformation...
Sam Hanna
shanna1st
Offline Send Email
Apr 3, 2003
3:14 pm
2572
You might see what the PCAUSA OID Scope says about the OIDs that your driver supports. Be sure to check the OID_GEN_SUPORTED_LIST as well as the OIDs related...
Thomas F. Divine
pcatom
Offline Send Email
Apr 3, 2003
3:52 pm
2573
It's me again: I double checked my OIDs using your software. The queries to OID_802_3_PERMANENT_ADDRESS and OID_802_3_CURRENT_ADDRESS are both returning the...
Robert Fenech
fener0012003
Offline Send Email
Apr 3, 2003
7:45 pm
2574
Thanks Sam. I'll keep you posted. ... _________________________________________________________________ Add photos to your messages with MSN 8. Get 2 months...
Robert Fenech
fener0012003
Offline Send Email
Apr 3, 2003
7:45 pm
2575
Hey Thomas. The tools are very neat. Thanks. ... _________________________________________________________________ Add photos to your e-mail with MSN 8. Get...
Robert Fenech
fener0012003
Offline Send Email
Apr 3, 2003
7:45 pm
2576
Yes I am. At the same time I'm debugging the driver and definitely the information is being reported to NDIS. ... ...
Robert Fenech
fener0012003
Offline Send Email
Apr 3, 2003
11:10 pm
2577
I am newbie to TDI client programming. I can create connection and address, but I couldnt bind(associate) them. I get error as INVALID_HANDLE Can anybody help...
Nramaraj
Offline Send Email
Apr 3, 2003
11:18 pm
2578
I tried using PCA sample. It works fine if make connection in DriverEntry routine. But If do in "Driver B"'s service path as a result of "Driver A" request, I...
Nramaraj
Offline Send Email
Apr 7, 2003
7:26 pm
2579
I guess I don't understand exactly what you are saying. Sorry. Please let us know a little more. What do you mean by "service path"? How does Driver B get...
Thomas F. Divine
pcatom
Offline Send Email
Apr 7, 2003
7:38 pm
2580
1) I get ioctl call from user in "Driver A (FS Filter driver)", this will put into worker Q 2) Worker Q calls "Driver B (Control driver)"'s exported entry...
Nramaraj
Offline Send Email
Apr 7, 2003
8:18 pm
2581
Perhaps a better solution would be to have Driver B perform TDI operations in a known thread context. Use a thread attached to the system process. Driver A...
Thomas F. Divine
pcatom
Offline Send Email
Apr 7, 2003
9:14 pm
2582
Hi Thomas, Thanks for your reply, I figured it out. I overlooked port no. -Ramaraj ... this ... where ... works ... or ... a ... all...
Nramaraj
Offline Send Email
Apr 7, 2003
9:28 pm
2583
Great! Am glad that the TDI samples are working for you. BTW, we hope to release an update to the TDI samples this week. Although the current samples are...
Thomas F. Divine
pcatom
Offline Send Email
Apr 7, 2003
10:23 pm
2584
Hi Tom, Was there a reason to move away from using IoAttachXYZ? James Grant (snip) ... (snip)...
James Grant
james@...
Send Email
Apr 7, 2003
11:20 pm
2585
James, NOT moving away from IoAttachXYZ. In fact, I would recommend using IoAttachXYZ. The new MJ function table hooking sample is simply an additional TDI...
Thomas F. Divine
pcatom
Offline Send Email
Apr 7, 2003
11:36 pm
2586
Thomas, There doesn't seem to be a Ring 0 component to TDI Mon. How does it hook into the function tables? Any idea Sujoy ... From: Thomas F. Divine...
Sen, Sujoy
sujoy.sen@...
Send Email
Apr 7, 2003
11:41 pm
2587
Look for TDIMSYS in Device Manager. TDIMon definitely uses a TDI filter driver. The driver is transported internally to the user-mode application. There are a...
Thomas F. Divine
pcatom
Offline Send Email
Apr 8, 2003
12:06 am
Messages 2558 - 2587 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