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 8430 - 8459 of 8586   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
8430
I'm currently working on a PCAUSA based NDIS 5.1 intermediate filter driver and need to know if this driver can achieve Vista Microsoft Windows Hardware...
jeanclaudebatista
jeanclaudeba...
Offline Send Email
Oct 1, 2008
10:36 pm
8431
... NDIS 5 IM filters are supported on Vista and probably the next Windows version as well. NDIS 5 IM drivers can obtain WHQL signatures for XP through Windows...
Thomas F. Divine
pcatom
Offline Send Email
Oct 2, 2008
1:19 am
8432
... One additional consideration is IM driver maintainability. I know of very few people who have successfully written an IM driver from scratch and handled...
Steve Dispensa
stevedpositive
Offline Send Email
Oct 2, 2008
2:25 am
8433
Hello, if my NDIS IM drivers is not interested in some packets, so it won't modify them, it just wants to forward them... do I have to repackage them? If yes,...
jsmith7771a
Offline Send Email
Oct 3, 2008
1:39 pm
8434
This article may help clarify things for you: http://msdn.microsoft.com/en-us/library/ms800988.aspx -Steve...
Steve Dispensa
stevedpositive
Offline Send Email
Oct 3, 2008
1:45 pm
8435
am using the IM on a PDA and able to work with most WIFI NIC, but from Marvell SDIO 8686 there is below frame received, it seems to be 802.3 using Length...
Qiang zhang
qiangieee
Online Now Send Email
Oct 6, 2008
3:05 pm
8436
That is a IEEE 802.2 Logical Link Control (LLC) header that has not been stripped off. Thomas F. Divine From: discussion-pcausa@yahoogroups.com ...
Thomas F. Divine
pcatom
Offline Send Email
Oct 6, 2008
3:30 pm
8437
Seems to be SNAP header... shouldn't this be susidized in different layer? ... From: Qiang zhang <qiangieee@...> To: discussion-pcausa@yahoogroups.com ...
Qiang zhang
qiangieee
Online Now Send Email
Oct 6, 2008
3:31 pm
8438
Yes, I would have expected it to be stripped off. However, you should be able to detect the header reliably. If the Ehternet Type/Length field is not a valid...
Thomas F. Divine
pcatom
Offline Send Email
Oct 6, 2008
3:39 pm
8439
The frame is encapsulated in LLC-SNAP. The ethertype field in this case is not the ethertype (0x0800 for IP, for example) but it's the length of the packet. I...
Gianluca Varenni
gianluca_var...
Offline Send Email
Oct 6, 2008
3:40 pm
8440
In the past I've seen other Wireless card drivers (on Windows XP) that return LLC SNAP frames instead of the "usual" ones. As Thomas said, it's perfectly but...
Gianluca Varenni
gianluca_var...
Offline Send Email
Oct 6, 2008
4:08 pm
8441
Thanks a lot Thomas and Gianluca, i guess Marvell WIFI device driver is uncommon then :) this is on Windows mobile ... From: Gianluca Varenni...
Qiang zhang
qiangieee
Online Now Send Email
Oct 6, 2008
4:19 pm
8442
actually i see a tricky behavior on receiving of the packet, when i indicate the complete buffer using NdisMEtherIndicateReceive, the miniporttransferdata got...
Qiang zhang
qiangieee
Online Now Send Email
Oct 7, 2008
5:32 am
8443
Hello all, I have the same problem. Is there any update on this? In XP SP2 I got TDI_CONNECT, but when there is TCP flow I have a strange IRP with minor code...
volodymyr.shcherbyna
volodymyr.sh...
Offline Send Email
Oct 7, 2008
2:56 pm
8444
I found an answer myself: http://www.shcherbyna.com/?p=31 ... got ... SMB...
volodymyr.shcherbyna
volodymyr.sh...
Offline Send Email
Oct 9, 2008
1:53 pm
8445
Hello, I have made a few tests using virtual machines and I have come to the conclusion that some such products are installing a NDIS protocol driver that...
Cristi
wtherapy
Online Now Send Email
Oct 14, 2008
3:18 pm
8446
Usually virtual machines emulate things properly. What kind of port is being opened? SMB? In this case you have to load before netbt.sys in your filter. -- ...
volodymyr.shcherbyna
volodymyr.sh...
Offline Send Email
Oct 14, 2008
3:51 pm
8447
Hi guys, I'm developing an application and I want to get the host name from an IP address. I used 'gethostbyaddr' function, but the firewall on the machine the...
Sorin Vinturis
sorin.vinturis
Online Now Send Email
Oct 20, 2008
1:27 pm
8448
Hi all, Not sure if this will reach the NG but i hope so (writing this in gmail). My problem: We have an NDIS-WDM (NDIS Version 5) driver and our problem is...
Faik Riza
faikriza
Offline Send Email
Oct 20, 2008
2:44 pm
8449
Hi again, it seems as if the problem description I was given was kind of not really true and hence I kind of described the wrong problem. Sorry about that. The...
Faik Riza
faikriza
Offline Send Email
Oct 21, 2008
12:55 pm
8450
Is your NDIS-WDM driver the wireless miniport being controlled by the third party application that is setting up the WLAN connection? Does the WLAN setup...
Thomas F. Divine
pcatom
Offline Send Email
Oct 21, 2008
3:03 pm
8451
Hi, No, our NDIS-WDM driver is for a completly different device. I am not sure about what API's the third party application is using. Our NDIS-WDM driver has...
Faik Riza
faikriza
Offline Send Email
Oct 21, 2008
4:01 pm
8452
Re "Whenever [...] the application gets unresponsive it takes around 2 minutes before any button click reacts", sounds like a thread could be blocked....
Bryan Burgin
bburgin@...
Send Email
Oct 21, 2008
5:21 pm
8453
Hi, Thanks Thomas and Bryan for responding. I have done further analysis of this issue and can see that setting the timer resolution to a lower value then the...
Faik Riza
faikriza
Offline Send Email
Oct 23, 2008
11:58 am
8454
Hello, I have to develop NDIS Intermediate MUX 1:N driver. The sample in the DDK has N:1 driver code. Please suggest some links or basics that would help me to...
ritvika.arora
Offline Send Email
Nov 11, 2008
2:13 pm
8455
Hello, I have an IM driver still in the development stage and i am runnning into a weird issue during testing. The installation works all the time when i test...
Chetan Kumar
chetan_malur
Offline Send Email
Nov 17, 2008
2:11 pm
8456
Hi, I've installed the MUX sample driver through network connections UI and now want to add subsequent virtual NICs through a command line tool. Here is what...
hrishikeshv
Offline Send Email
Nov 22, 2008
11:12 pm
8457
... Hi every body! I am developing (well... trying to develop :-) ) a NDIS driver that filters some packets, but i have some questions... I hope some body can...
Gloria
nohayquienen...
Offline Send Email
Nov 24, 2008
2:40 pm
8458
a,b) A protocol driver cannot intercept and filter packets out. It can only receive/send packets. If the driver needa to work on both vista and XP and you want...
Gianluca Varenni
gianluca_var...
Offline Send Email
Nov 24, 2008
4:42 pm
8459
below: ... [AB] you will need am IM or afilter drv (vista) ... [AB] yes IMs do work with vista also, in addition to it there is the filtering model introduced,...
amitr0
telu_99
Offline Send Email
Nov 24, 2008
7:26 pm
Messages 8430 - 8459 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