NDIS_WAN_GET_COMP_INFO

The NDIS_WAN_GET_COMP_INFO structure returns compression information to OID_WAN_GET_COMP_INFO. This object identifier requests the miniport driver to determine whether the NIC or the NIC driver support compression. If so, the values returned are used to negotiate compression with the Point-to-Point Protocol (PPP) Compression Control Protocol. The protocol subsequently negotiates a compression scheme with an OID_WAN_SET_COMP_INFO request.

The following syntax defines the NDIS_WAN_GET_COMP_INFO structure.

typedef struct _NDIS_WAN_GET_COMP_INFO { 
  NDIS_HANDLE NdisLinkHandle; 
  NDIS_WAN_COMPRESS_INFO SendCapabilities; 
  NDIS_WAN_COMPRESS_INFO RecvCapabilities; 
} NDIS_WAN_GET_COMP_INFO, *PNDIS_WAN_GET_COMP_INFO; 

Members

  • NdisLinkHandle
    [in] Identifies the link. The miniport driver supplied this handle in the initial line-up indication for this link.
  • SendCapabilities
    [out] Specifies a structure containing information on compression capabilities for sending data, defined in NDIS_WAN_COMPRESS_INFO.
  • RecvCapabilities
    [out] Specifies a structure containing information on compression capabilities for receiving data, defined in NDIS_WAN_COMPRESS_INFO.

Remarks

None.

Requirements

OS Versions: Windows CE .NET 4.0 and later.
Header: Ndis.h.

See Also

OID_WAN_GET_COMP_INFO | OID_WAN_SET_COMP_INFO | NDIS_WAN_COMPRESS_INFO

 Last updated on Tuesday, May 18, 2004

© 1992-2003 Microsoft Corporation. All rights reserved.