我可以通过Windows GUI RasDial接口以及它的CLI等价物(c:\windows\rasdial.exe
)完美地连接到VPN。但是,当尝试在C中自动执行时,RasDial
返回633:ERROR_PORT_NOT_AVAILABLE
(source)
这对我来说不是特别的。我在四台不同的电脑上测试过,每台电脑都有不同的网络连接。
这是我的源代码:
#include <windows.h>
#include <winerror.h>
#include <Ras.h>
#include <raserror.h>
#include <wchar.h>
#include <stdio.h>
int EnumConnections();
int DialOut();
int HangUp();
int Debug();
int main()
{
printf("Dial out return code: %d\n", DialOut());
printf("Debug status: %i\n", Debug());
EnumConnections();
HangUp();
return 0;
}
int EnumConnections()
{
DWORD dwCb = 0;
DWORD dwRet = ERROR_SUCCESS;
DWORD dwConnections = 0;
LPRASCONN lpRasConn = NULL;
if (dwRet == ERROR_BUFFER_TOO_SMALL)
{
lpRasConn = (LPRASCONN) HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, dwCb);
if (lpRasConn == NULL){
wprintf(L"HeapAlloc failed!\n");
return 0;
}
lpRasConn[0].dwSize = sizeof(RASCONN);
dwRet = RasEnumConnections(lpRasConn, &dwCb, &dwConnections);
if (ERROR_SUCCESS == dwRet){
wprintf(L"The following RAS connections are currently active:\n");
DWORD i;
for (i = 0; i < dwConnections; i++){
wprintf(L"%s\n", lpRasConn[i].szEntryName);
}
}
HeapFree(GetProcessHeap(), 0, lpRasConn);
lpRasConn = NULL;
}
if(dwConnections >= 1)
wprintf(L"The operation failed to acquire the buffer size.\n");
else
wprintf(L"There are no active RAS connections.\n");
return 0;
}
int DialOut()
{
LPCTSTR pbkLoc = "C:\\rasphone.pbk\0";
char* szPhoneNumberToDial = "127.0.0.1";
char* szUserName = "test\0";
char* szPassword = "test\0";
RASDIALPARAMS rdParams;
rdParams.dwSize = sizeof(RASDIALPARAMS);
rdParams.szEntryName[0] = '\0';
lstrcpy(rdParams.szPhoneNumber, szPhoneNumberToDial);
rdParams.szCallbackNumber[0] = '\0';
lstrcpy( rdParams.szUserName, szUserName );
lstrcpy( rdParams.szPassword, szPassword );
rdParams.szDomain[0] = '\0';
HRASCONN hRasConn = NULL;
return RasDial(NULL, pbkLoc, &rdParams, 0L, NULL, &hRasConn);
}
int HangUp()
{
printf("Hung up\n");
HRASCONN hRasConn = NULL;
return RasHangUp(hRasConn);
}
int Debug()
{
RASCONNSTATUS RasConnStatus;
HRASCONN hRasConn = NULL;
RasConnStatus.dwSize = sizeof(RasConnStatus);
return RasGetConnectStatus(hRasConn,&RasConnStatus);
}
有什么想法吗?我真的被困在这里了。我读了所有的文件。我还是不知道从哪里开始。
最佳答案
要连接到VPN连接,电话簿中必须包含一个条目。如果未提供任何条目,RasDial只能连接到拨号连接。否则它怎么知道是否使用PPTP、L2TP、SSTP等?
基于上面的示例,您为条目提供的条目名称是一个以空结尾的字符串,没有条目名称。根据您的示例,您需要在“C:\ rasphone.pbk”中创建一个包含所有VPN连接信息的条目,并在szEntryName字段中将该条目名称传递给结构。
LPCTSTR entryName = "Your Entry Name\0";
rdParams.szEntryName = entryName;
希望能有帮助!
关于c - RasDial返回633(正在使用端口),但不是,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11271121/