Important:
This is retired content. This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This content may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist.
A version of this page is also available for
4/8/2010

This structure contains server line-specific information.

Syntax

typedef struct tagRasCntlServerLine {
  RASDEVINFO 
rasDevInfo;
  BOOL 
bEnable;
  DWORD 
bmFlags;
  UINT 
DisconnectIdleSeconds;
  DWORD 
dwDevConfigSize;
  BYTE 
DevConfig[1];
} RASCNTL_SERVERLINE, *PRASCNTL_SERVERLINE;

Members

rasDevInfo

Value that specifies the szDeviceTypeand szDeviceNameparameters of the line.

bEnable

Setting this member to TRUE enables server line configuration.

bmFlags

Unused. Set to zero.

DisconnectIdleSeconds

The time, in seconds, at which the device disconnects after being idle.

dwDevConfigSize

Size of the device configuration.

DevConfig

Variable size ( dwDevConfigSizebytes) array of the device configuration information.

Remarks

This structure is passed to the following IOCTLs:

  • RASCNTL_SERVER_LINE_GET_PARAMETERS

  • RASCNTL_SERVER_LINE_SET_PARAMETERS

  • RASCNTL_SERVER_LINE_ENABLE

  • RASCNTL_SERVER_LINE_DISABLE

Requirements

Header ras.h
Windows Embedded CE Windows CE .NET 4.0 and later
Windows Mobile Windows Mobile Version 5.0 and later

See Also