I use the BindView utility to install a modified version of the PASSTHRU driver on all network devices of a computer. If a network card is removed for...
Regarding to my previous question. How can the Notify Object be used to detect that a Network Device has been removed and is not bound anymore to my miniport...
... Your driver can detect when a previously-bound adapter is removed because the ProtocolUnbindAdapter handler will be called. You can simply ask Passthru at...
Hi Guys, I have a TDI hooking filter driver(based on pcausa tdi drivers) which hooks TDI_RECEIVE_DATAGRAM. It is loaded after TCP/IP and before Netbios ...
Egemen Tas
egemen.tas@...
Oct 3, 2006 2:48 am
7663
Very hard to say without seeing the rest of your code. BUT: are you testing with a (real) multiproc computer? Regardless of the above, do you need any locking...
Hi Steve, I should have been clearer. AddrTdiSetEvent(DevOj, Irp, IrpSp) { PTDI_REQUEST_KERNEL_SET_EVENT pSrc; PTDI_REQUEST_KERNEL_SET_EVENT pDest; pAddrObj =...
Egemen Tas
egemen.tas@...
Oct 3, 2006 6:58 am
7665
I forgot to tell that this is not a real MP machine. It is a hyperthreading one. Egemen ... From: discussion-pcausa@yahoogroups.com ...
Egemen Tas
egemen.tas@...
Oct 3, 2006 7:00 am
7666
Thanks. I have seen the Extended Passthru, but as far as I understand, it gives the actual list of Network Adapters to which Passthru is bound. But I must have...
Hi, I am using K-Jam device and for my network related application I need RSSI of different APs. I am gettign it correctly in most of the cases but for ...
It is conceivable that this is a mathematical quirk like sign extension issues. A painful, but perhaps helpful, approach would be to do a byte-by-byte ...
Folks - We are using the TDIPASSL based driver in one of our products. For a huge file transfer (600 MB), I see that traffic (TCP) doesnt pass anymore after...
... A core 2 duo is virtually identical to two separate CPUs. Hyperthreading is very similar to two CPUs as well, in the sense that it can elicit all of the...
... What version of the PCAUSA samples are you using? I don't see Rocketmail as a recent customer for this product. These samples should be multi-processor...
Thomas - We are using Version 2.02.05.13 of the Advanced TDI Samples for Windows NT It could be possible that our user mode app or changes made in TDIPASSL by...
That is a fairly old version, released in April, 2003. Newer versions were released in January, 2005 and then March, 2005. The TDI samples release notes are...
This is a really tough area to troubleshoot if you aren't comfortable with locking and concurrency. The DDK has some useful information, and running under...
Thomas do you have an idea? I should have been clearer. AddrTdiSetEvent(DevOj, Irp, IrpSp) { PTDI_REQUEST_KERNEL_SET_EVENT pSrc; PTDI_REQUEST_KERNEL_SET_EVENT...
Egemen Tas
egemen.tas@...
Oct 6, 2006 11:37 pm
7676
Egemen, I have kept your posting in my Blackberry as a reminder of your question. Unfortunately, I don't have any suggestions in this case. I assume that when...
Hi Thomas, Thank you very much for your reply. I could hardly convince the user to send me a memory dump. In his machine, this is consistently reproducible but...
Egemen Tas
egemen.tas@...
Oct 7, 2006 2:29 am
7678
It does indeed sound like it could be an MP problem, if you're checking something for 0 and then by the next line it IS 0. You could try goofing around with...
Mentioning the internal closed flag suggest that perhaps reference counting on the address object could be improved (or added). On more of my recent projects I...
Thank you very much for your replies Thomas and Steve. Much appreciated. I think we will need to be paranoid in reference counting as well with much more...
Egemen Tas
egemen.tas@...
Oct 7, 2006 4:01 pm
7681
Is there a way we ca automatically unload/reload miniport. It is for a NDIS 5.1 driver. Regards Kidoos...
Hi all, Anyone knows how to use Xerces C++ parses a xml stream buffer, e.g get the stream data from remote server with HTTP, and then get the xml element tags...
Sorry for the badly framed question. It was automatic loading/unloading from protocol driver or application without user intervention. I mean some thing using...
This isn't the list for that; we try to stick to Windows kernel network drivers. -sd ... This isn't the list for that; we try to stick to Windows kernel...
Is your miniport a virtual miniport? I'd say SetupDi* would be a great place to look if that's the case. In fact, it's really about the same regardless -...
Hi, We want run DTM over our NICs (one is 10/100M, another is gigabit) 1. If I test 10/100M NDIS5/5.1 miniport driver under windows vista, which DDK I...