Hi, I have a question about dynamic WEP keys. If I wanted to implement dynamic WEP keys, I should in theory be able to use the standard 4-way handshake to do...
... NDIS does not have any API to get TCP or UDP information from a packet. Higher-level protocols (like TCP/IP) know how to do this. From NDIS all you can...
You will have to get the contiguous byte data from the packet using NdisQueryPacket,NdisQueryBufferSafe. Then you can parse this byte data for MAC,IP,TCP/UDP ...
Thank you for your reply I do it just like this. But tcp header have a length field present tcp header length ,not tcp length(header+data). so how to get tcp...
The IP header contains the total length of the IP packet, in bytes, as well as the IP header length, in longwords. So, to get the total length of the TCP or...
Mark Reynolds
mreynold@...
Jun 2, 2005 2:07 pm
6579
Has anyone tried installing/running any of the TDI sample drivers on a Longhorn Beta build (if its available). I am just curious to know if it works as is...
... Good question. I'll give it a shot when I get a chance. You should know, however, that Longhorn kernel-mode network components are significantly different...
Hello I would like to connect two computers using bluetooth, with a wireless adapter I know how to do it, but with bluetooth I don't know where to start. ...
Niklas Olsson
niklaso@...
Jun 3, 2005 12:40 pm
6583
Bonjour Niklas, Friday, June 3, 2005, 2:08:59 PM, vous ecriviez: NO> Hello I would like to connect two computers using bluetooth, with a NO> wireless adapter...
I resolved all my problems using the windows's register. I change the MTU to MTU-MYHEADERSIZE and everything works Ok. Thanx to the pcausa group, my special...
What errors do you see? ... in DDK ... environments of ... code, you ... or ... some bug ... install time. ... example, the ... 2000, ... Windows ... Build ......
Long back i wrote a protocol driver based on DDK packet sample. I just used it in an application and realized that it drops packets because application is not...
... Of course, you could license Rawether for Windows. :-) With Rawether you can write a single Win32 application that will work (and offer performance...
Thank you for the excellent information Thomas. I was thinking of creating multiple threads in the application to generate multiple requests but now i think...
... Don't fall in love with multiple threads!!! There is no real benefit in more threads than CPUs. Exceptions are, of course, when multiple threads are useful...
hi!everyone I am developing a ndis hook driver!I need to add a ip header before original ip header in client side and analyze the added header in server side. ...
Hello, I write for soliciter your assistance on a subject which will probably seems simple.... I try to connect to an access point configured in WPA TKIP. I...
Bonjour mameselle, Wednesday, June 8, 2005, 11:23:12 AM, vous ecriviez: Parlons anglais si tu le veux bien. You made the usual mistake for WPA implementation. ...
Hy everyone, I'm wondering if it is possible to have two drivers in the same image file meaning a NDIS intermadiate driver and a TDI driver(this one is to get...
Thank you for your answear, can you expand a little bit I just need the idea. Best Regards. Cristi Cristea. ... From: discussion-pcausa@yahoogroups.com ...
... In this case it is important to implement as two separate drivers. For sure, the TDI filter CANNOT be unloaded EVER. OTOH, the NDIS IM driver may be loaded...
Implement an IM driver. Create a device using IoCreateDevice and attach it to TCP (or UDP). (you need to create it when TCPIP.sys is already loaded. Preferable...
I have one single driver image that has got both TDI and NDIS modules in it. And it is not messy. The only problem I face is, I can not update my driver (after...
... Yes, for sure that NDIS IM driver could not pass the NDIS Tester and get a driver signature. BUT, that is just fine in some cases. You should also test...
... I think this is the behavior that you must live with. Now that you see the behavior you should be able to make a design that accomodates it. There probably...