Share via


NDIS_WAN_GET_COMP_INFO (Windows Embedded CE 6.0)

1/6/2010

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.

Syntax

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

Header ndis.h
Windows Embedded CE Windows CE .NET 4.0 and later

See Also

Reference

NDIS Structures
OID_WAN_GET_COMP_INFO
OID_WAN_SET_COMP_INFO
NDIS_WAN_COMPRESS_INFO