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...
Message search is now enhanced, find messages faster. Take it for a spin.

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 7734 - 7763 of 8586   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
7734
Hello All, I am new to Driver Development and I have modified Extended Passthru driver and I have added a timer routine using KTIMER, KeSettimer, etc. I would...
hash_defined
Offline Send Email
Dec 1, 2006
3:24 pm
7735
... Passthru ... etc. ... the IM ... that on ... I am ... follow ... You need to remember that if NdisSend returns a status of NDIS_STATUS_PENDING, your...
gianluca_varenni
gianluca_var...
Offline Send Email
Dec 1, 2006
5:48 pm
7736
... [PCAUSA] The DDK documentation for NdisSend is your guide. The first step is, of course, to create a NDIS_PACKET that represents the network frame you want...
Thomas F. Divine
pcatom
Offline Send Email
Dec 1, 2006
6:06 pm
7737
Hi, I am trying to write a TDI Provider/NDIS protocol driver and a TDI client for Windows server 2003. I would like to know if your sample driver have examples...
r_kanna
Online Now Send Email
Dec 1, 2006
7:22 pm
7738
... [PCAUSA] The PCAUSA Rawether for Windows product includes NDIS protocol drivers. http://www.rawether.net But you probably can use the DDK NDISPROT sample...
Thomas F. Divine
pcatom
Offline Send Email
Dec 1, 2006
7:41 pm
7739
Is it OK to call NdisQueryAdapterInstanceName() within a Filter NDIS IM driver? I am getting a BSOD (D1) when I make this call. The DDK mentions abt protocol...
sanjayc.rm
Offline Send Email
Dec 1, 2006
7:56 pm
7740
I hope that you didn't mean that you actually got a BSOD. If you are a driver developer you must have a debugger installed. In that case you would be able to...
Thomas F. Divine
pcatom
Offline Send Email
Dec 1, 2006
8:26 pm
7741
The NDISPROT example in the Windows 2003 DDK does not register with TDI. I thought a TDI provider is nothing but a NDIS protocol driver that registers with TDI...
r_kanna
Online Now Send Email
Dec 1, 2006
9:12 pm
7742
... [PCAUSA] You are correct that a TDI provided is "simply" a NDIS protocol driver that registers with TDI. After registering with TDI your provider ...
Thomas F. Divine
pcatom
Offline Send Email
Dec 1, 2006
10:07 pm
7743
Hi Thomas, Thanks for the replies.. I wanted to write a protocol driver that will send/recv raw ethernet frames, so I started to look at the NDISPROT sample in...
Kanna Rajagopal
r_kanna
Online Now Send Email
Dec 1, 2006
11:48 pm
7744
Hi Thomas, Thanks for the replies.. I wanted to write a protocol driver that will send/recv raw ethernet frames, so I started to look at the NDISPROT sample in...
r_kanna
Online Now Send Email
Dec 1, 2006
11:55 pm
7745
... [PCAUSA] I think that we are making progress. It seems that you have no need for TDI whatsoever. It is an overly complex abstraction that is irrelevant to...
Thomas F. Divine
pcatom
Offline Send Email
Dec 2, 2006
3:34 am
7746
Thomas, I really appreciate your detailed reply. I had initially thought of opening private communication between the WDM driver and protocol driver, but...
r_kanna
Online Now Send Email
Dec 2, 2006
2:37 pm
7747
Thomas, If I want to my protocol driver to receive raw ethernet packets having a proprietory (non-IP) ether-type. Is there a way I can inform NDIS that such...
r_kanna
Online Now Send Email
Dec 11, 2006
6:18 pm
7748
... [PCAUSA] No. ... [PCAUSA] That is correct. There is no such method. ... [PCAUSA] Yes. But this should not cause a problem if your user-defined ether-type...
Thomas F. Divine
pcatom
Offline Send Email
Dec 11, 2006
7:08 pm
7749
I have a dll which calls a modified version of Passthru and it first opens the device witha standard piece of code: DesiredAccess = GENERIC_READ|GENERIC_WRITE;...
menasheungar
Offline Send Email
Dec 12, 2006
3:30 pm
7750
... [PCAUSA] A common cause for this sort of behavior is related to I/O operations that may not have been completed and/or handles that may not have been...
Thomas F. Divine
pcatom
Offline Send Email
Dec 12, 2006
8:06 pm
7751
Hi I'm working on a miniport driver for a NIC. To get data from the driver/NIC I make a device file with NdisMRegisterDevice. In the IRP functions I need...
scc1982ch
Offline Send Email
Dec 13, 2006
3:03 pm
7752
... [PCAUSA] Use global data instead of extension. Thomas F. Divine...
Thomas F. Divine
pcatom
Offline Send Email
Dec 13, 2006
4:15 pm
7753
... It might be easier to just use a global variable if you know you're only going to have one control device. -sd...
Steve Dispensa
stevedpositive
Offline Send Email
Dec 13, 2006
4:16 pm
7754
I want to have one device file for every NIC. Is there a possibility to do this?...
scc1982ch
Offline Send Email
Dec 13, 2006
5:44 pm
7755
I have tried to reduce my calling program to one single line which apparently is responsible for the phenomena (since when I exit my program, my dll executes...
menasheungar
Offline Send Email
Dec 13, 2006
7:10 pm
7756
Well, you could find another way of correlating device objects to adapter. For example, for each adapter, keep a pointer in your context to the control device....
Steve Dispensa
stevedpositive
Offline Send Email
Dec 13, 2006
7:11 pm
7757
Do you explicitly close the handle to the device before exiting? The Open call adds a reference to the adapter that is not removed until the handle is closed. ...
Thomas F. Divine
pcatom
Offline Send Email
Dec 13, 2006
7:25 pm
7758
... [PCAUSA] What do you mean by "file"? After a driver is loaded the concept of "file" isn't important anymore. The driver image is in memory (mostly...). My...
Thomas F. Divine
pcatom
Offline Send Email
Dec 13, 2006
7:32 pm
7759
This is my code and you can see that I close the handle immediately after opening the Device: DeviceHandle = INVALID_HANDLE_VALUE; do { DeviceHandle =...
menasheungar
Offline Send Email
Dec 13, 2006
7:46 pm
7760
Looks straightforward to me. What does Cmd do? Thomas F. Divine...
Thomas F. Divine
pcatom
Offline Send Email
Dec 13, 2006
8:33 pm
7761
Thanks for your help. I recently made a change in the driver and omitted a IoCompleteRequest in the exit path. This caused the calling program to stay in...
menasheungar
Offline Send Email
Dec 14, 2006
12:06 am
7762
Hello I want that a ReadFile from user space blocks until I have data to return. I need something that blocks in my read-dispatch in my Ndis driver function...
scc1982ch
Offline Send Email
Dec 23, 2006
1:43 am
7763
Use a Cancel-Safe IRP queue. There is good documentation in the DDK, along with a couple of samples of fully worked-out CSQ drivers. My blog...
Steve Dispensa
stevedpositive
Offline Send Email
Dec 23, 2006
4:49 am
Messages 7734 - 7763 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