Hello Respected Sir, A word of thanx for ur reply ...... nice to have ur reply very soon .... as per ur guideline i addd the DbgPrint(" In the Driver Entry ")...
6456
Steve Dispensa
stevedpositive
May 1, 2005 4:16 pm
You really need to get set up with a debugger. Do you know how to set up WinDbg? Get the debugger working and make sure your driver is loading. You'll see...
6457
Thomas F. Divine
pcatom
May 1, 2005 4:29 pm
In addition to what Steve said, perhaps you should first make sure that you know how to install the unmodified PassThru NDIS IM driver from the Windows Server...
6458
Thomas F. Divine
pcatom
May 1, 2005 7:43 pm
... I just tried OID_GEN_PHYSICAL_MEDIUM on a 1394 adapter. It does return NdisPhysicalMedium1394 - at least on the Windows XP box that I checked. Thomas F....
6459
uday pandya
gcet01it210
May 2, 2005 4:14 am
Respected Sir, Thanx for ur reply.....firstly i am using the windiws 2000 DDK build 2505 and i dont have the 2003 DDK with me, and about the Devcon, i am the...
6460
Steve Dispensa
stevedpositive
May 2, 2005 4:25 am
Uday, You should look at the debugger documentation. If you don't have the debugger yet, go download it from ...
6461
Thomas F. Divine
pcatom
May 2, 2005 4:46 am
_____ From: discussion-pcausa@yahoogroups.com [mailto:discussion-pcausa@yahoogroups.com] On Behalf Of uday pandya Sent: Monday, May 02, 2005 12:13 AM To:...
6462
Yatindra Vaishnav
yatindr_v
May 2, 2005 5:53 am
Hi, How r you installing you 1394 NDIS miniport? Using inf i believe then u need to make a few changes to the INF. Just let me know about the INF file. I'll...
6463
jlkbrgr
May 2, 2005 3:17 pm
I want to use the 802.1x authentication with a radius server in the backend (as authentication server). How can I use the NDIS Protokoll for that communication...
6464
Hien Nguyen
hienmove
May 2, 2005 9:31 pm
I use Windbg to debug, and see the folowing lines when the target computer is hung after installing the driver: *** Fatal System Error: 0x0000007f ...
6465
Thomas F. Divine
pcatom
May 2, 2005 9:47 pm
Ask on the WinDbg newsgroup. Study the WinDbg documentation, starting with the !analyze -v command. Good luck, Thomas F. Divine ... From: "Hien Nguyen"...
6466
Thomas F. Divine
pcatom
May 3, 2005 4:33 pm
... I am afraid that you must use a debugger to find this bug yourself. Good luck, Thomas F. Divine...
6467
Abhijit Kulkarni
abhiputs
May 4, 2005 9:59 am
Mostly a kernel stack overflow. Check for recursive call. Abhijit ... __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo!...
6468
rigo666beast
May 4, 2005 12:15 pm
How can i build a new packet in the passthru sample? For example, suppose that i want send for each icmp packet one more ip packet with a machine hostname...
6469
rigo666beast
May 4, 2005 1:27 pm
I need in the cryptoping sample add a crypt-header to packets and permit encrypt of large ping packets. I mean, i want, to crypt a 1500 size ping packet adding...
6470
Thomas F. Divine
pcatom
May 4, 2005 1:40 pm
... Examine the CLRequestComplete handler in the NDISREQ.c module. In that routine add code to modify the query results returned from the lower adapter for...
6471
Thomas F. Divine
pcatom
May 4, 2005 1:50 pm
... This will probably work. You MUST use a debugger to find out where problems like this crash. If you do not have a debugger, then you will fail. You MUST...
6472
mosquitooth
May 4, 2005 3:24 pm
Hi, I just finished working on my solution that conists of a NDIS IM driver and a windows service (that holds a handle to the driver for interaction). Now,...
6473
Thomas F. Divine
pcatom
May 4, 2005 3:31 pm
... You must devise a way for your driver to notify any application or service that the handle should be closed. You can do this using an IRP that the driver...
6474
rigo666beast
May 4, 2005 4:29 pm
Thank you, Thomas, for you fast answer. I don't find ndisreq.c file. I need to set a mtu value of 1000, for example. How can i do that in a miniport? ... ...
6475
Thomas F. Divine
pcatom
May 4, 2005 4:38 pm
... I am sorry. When you mentioned "CryptoPing" I thought that you were using the PCAUSA CryptoPing sample NDIS IM driver. It is described at: ...
6476
uday pandya
gcet01it210
May 5, 2005 11:27 am
Hi ... Can u please send me the older verison of the Cryptoping .... so i can look it up and tell u the answer.... if poss than send me as attachment... i am...
6477
moshe_engler
May 5, 2005 11:28 am
I am using OID_GEN_MEDIUM_TYPE and for some strange reason I get "802.3" instead of "Bluetooth". Is this the correct way for doing it? Does anybody know an...
6478
rigo666beast
May 5, 2005 1:58 pm
Thomas, Thank you so much. I finished that work. ... rigo666beast ... were using ... completed. ... structure ... you have...
6479
rigo666beast
May 5, 2005 1:59 pm
I need install passthru sample over a WAN net (ppp, ...). Is that possible? How can I Do?...
6480
rigoberto perez
rigo666beast
May 5, 2005 1:59 pm
If you find any cryptoping sample or another crypt.. sample, want you please send me? Thank you uday pandya <gcet01it210@...> wrote: Hi ... Can u...
6481
rigo666beast
May 5, 2005 2:02 pm
Sorry, I have not any version of CryptoPing. ... can look it up and tell u the answer.... if poss than send me as attachment... i am alos working on the same...
6482
rigo666beast
May 5, 2005 2:10 pm
In order to install passthru sample I modify the INF file and do the next procedure: . Open Lan Connection Properties . Install . Add Service . Browse the SYS...
6483
rigo666beast
May 5, 2005 2:20 pm
How can I send a message from Driver to my Application. I can send messages from application to driver but I need do that in both senses. Somebody help me,...
6484
Thomas F. Divine
pcatom
May 5, 2005 2:33 pm
... See the BindView application in the DDK. Your NDIS IM driver must be digitally signed to eliminate the "Unsigned Driver" warning boxes. Thomas F. Divine...