Click here to Skip to main content
15,878,871 members
Articles / Desktop Programming / MFC
Article

Calling RasHangUp without errors.

Rate me:
Please Sign up or sign in to vote.
3.83/5 (3 votes)
9 Jan 2000 106.3K   19   11
A way to call RasHangUp without hanging your applications or your modem

Problem

The RasHangUp function terminates a remote access connection. The connection is specified with a RAS connection handle. The function releases all RASAPI32.DLL resources associated with the handle. (MSDN)

Then, in remarks, it is mentioned that the application should sleep about 3 seconds, or until RasGetConnectStatus returns ERROR_INVALID_HANDLE. If you realy just call RasHangUp and exit you can "hang" both the modem and rnaapp (the application that implements Dial-Up Services). Furthermore, if you do everything as described in MSDN you may still receive the following error message:

RNAAPP caused an invalid page fault in module xxxx.

Solution

This problem was a besetting sin when I wrote my Dial-up dialer program, until I found a solution that works in my program:

DWORD dwRet;
RASCONNSTATUS rStatus;
ZeroMemory(&rStatus, sizeof(RASCONNSTATUS));
rStatus.dwSize = sizeof(RASCONNSTATUS);
dwRet = RasGetConnectStatus(hRasConn, &rStatus);
if (dwRet != ERROR_INVALID_HANDLE)
{
	RasHangUp(hRasConn);  // hRasConn - valid handle to the RAS connection
	MSG msg;
	while (dwRet != ERROR_INVALID_HANDLE)
	{
		while (PeekMessage(&msg, NULL, 0, 0, PM_REMOVE))
		{
	   		TranslateMessage(&msg);
		   	DispatchMessage(&msg);
		}
		dwRet = RasGetConnectStatus(hRasConn, &rStatus);
	}
}

Note: I removed some unimportant stuff so check this code before using...

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer SEO
Russian Federation Russian Federation
AlexF's Blog in Russian
Owner Spy competition analysis
Rating Burner Rating of blogs

Comments and Discussions

 
GeneralWindows's dialer list Pin
phi-161816-Oct-07 21:49
phi-161816-Oct-07 21:49 
GeneralI've some question... Pin
ariesoo22-May-05 9:01
ariesoo22-May-05 9:01 
QuestionHow to use RasDial() WITHOUT phonebook entry? Pin
soniko5-Oct-03 4:10
soniko5-Oct-03 4:10 
AnswerRe: How to use RasDial() WITHOUT phonebook entry? Pin
Ramkrishna Pawar14-May-04 3:29
Ramkrishna Pawar14-May-04 3:29 
GeneralTelephone number Pin
5-Jun-01 1:30
suss5-Jun-01 1:30 
GeneralRe: Telephone number - and - Does anyone know how to get the user and password ? Pin
12-Sep-01 22:57
suss12-Sep-01 22:57 
GeneralRe: Telephone number - and - Does anyone know how to get the user and password ? Pin
5-Dec-01 4:56
suss5-Dec-01 4:56 
QuestionThanks But ??? Pin
dfields32631-Mar-00 11:26
dfields32631-Mar-00 11:26 
QuestionThanks But ??? Pin
dfields32631-Mar-00 11:25
dfields32631-Mar-00 11:25 
GeneralRE: Pin
Martijn Hoogendoorn6-Mar-00 10:44
sussMartijn Hoogendoorn6-Mar-00 10:44 
GeneralRe: RE: Pin
Aldamo3-May-02 19:56
Aldamo3-May-02 19:56 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.