How is miniport driver Notified by selection of its property page ?

Hi, all
I’m developping a NDIS Miniport driver in Win2000.
There are some selection in the NIC’s “advanced” property page.
by which means does the miniport driver get notified if the
selection is changed ?


You are currently subscribed to ntdev as: $subst(‘Recip.EmailAddr’)
To unsubscribe send a blank email to leave-ntdev-$subst(‘Recip.MemberIDChar’)@lists.osr.com

Try IOCTL_NDIS_QUERY_GLOBAL_STATS.
It can set data too.

Max

----- Original Message -----
From: “Yee”
To: “NT Developers Interest List”
Sent: Tuesday, February 19, 2002 10:21 PM
Subject: [ntdev] How is miniport driver Notified by selection of its property page ?

> Hi, all
> I’m developping a NDIS Miniport driver in Win2000.
> There are some selection in the NIC’s “advanced” property page.
> by which means does the miniport driver get notified if the
> selection is changed ?
>
> —
> You are currently subscribed to ntdev as: xxxxx@storagecraft.com
> To unsubscribe send a blank email to leave-ntdev-$subst(‘Recip.MemberIDChar’)@lists.osr.com
>


You are currently subscribed to ntdev as: $subst(‘Recip.EmailAddr’)
To unsubscribe send a blank email to leave-ntdev-$subst(‘Recip.MemberIDChar’)@lists.osr.com

but selection of “advanced” porperty page do not send
“IOCTL_NDIS_QUERY_GLOBAL_STATS” request to
my miniport driver. Even if the driver receive
“IOCTL_NDIS_QUERY_GLOBAL_STATS” request,
it still doesn’t know which selection has been changed.

Help me !


You are currently subscribed to ntdev as: $subst(‘Recip.EmailAddr’)
To unsubscribe send a blank email to leave-ntdev-$subst(‘Recip.MemberIDChar’)@lists.osr.com

The system simply reloads the Miniport driver instance for which any
“advanced” parameters have been changed by the user.

Note that the MiniportReconfigure() function should do exactly what
you think its name implies, but the docs say:

“MiniportReconfigure is an function that the NDIS library currently
never calls but that a MiniportInitialize function can call as an
internal driver function.”

IM drivers can use their ProtocolPnPEvent() handler with event
‘NetEventReconfigure’ to reconfigure their protocol and/or Miniport.

HTH, Stephan

On Tue, 19 Feb 2002 22:21:42, “Yee” wrote:

>
>Hi, all
>I’m developping a NDIS Miniport driver in Win2000.
>There are some selection in the NIC’s “advanced” property page.
>by which means does the miniport driver get notified if the
>selection is changed ?


You are currently subscribed to ntdev as: $subst(‘Recip.EmailAddr’)
To unsubscribe send a blank email to leave-ntdev-$subst(‘Recip.MemberIDChar’)@lists.osr.com