RASSLIP structure
[Not supported after Windows Server 2003.]
The RASSLIP structure contains the results of a Serial Line Internet Protocol (SLIP) projection operation.
The RasGetProjectionInfo function returns a RASSLIP data structure when its rasprojection parameter has the value RASP_Slip.
Syntax
typedef struct RASSLIP {
DWORD dwSize;
DWORD dwError;
TCHAR szIpAddress[RAS_MaxIpAddress + 1];
} RASSLIP;
Members
dwSize
Specifies the size, in bytes, of the RASSLIP structure. Before calling the RasGetProjectionInfo function, set dwSize to sizeof(RASSLIP) to identify the version of the structure.dwError
Specifies whether SLIP is configured. If dwError is zero, SLIP framing is configured. Otherwise, dwError is ERROR_PROTOCOL_NOT_CONFIGURED.szIpAddress
A null-terminated string that contains the client's IP address on the RAS connection. This address string has the form a**.b.c.**d
Remarks
If the RASENTRY structure for the phone-book entry used in a RAS connection specifies SLIP framing, call RasGetProjectionInfo with a RASPROJECTION of RASP_Slip to determine whether SLIP framing was successfully configured.
Requirements
Minimum supported client |
Windows 2000 Professional [desktop apps only] |
Minimum supported server |
Windows 2000 Server [desktop apps only] |
End of client support |
Windows XP |
End of server support |
Windows Server 2003 |
Header |
Ras.h |
Unicode and ANSI names |
RASSLIPW (Unicode) and RASSLIPA (ANSI) |
See also
Remote Access Service (RAS) Overview