News:

MASM32 SDK Description, downloads and other helpful links
MASM32.com New Forum Link
masmforum WebSite

how to dialup to internet use my adsl acount?

Started by UtillMasm, April 14, 2009, 09:53:05 AM

Previous topic - Next topic

UtillMasm

how to dialup to internet use my adsl acount?

PBrennick

Why do you need to dial up. An ADSL connection is always hot.

Paul
The GeneSys Project is available from:
The Repository or My crappy website

Vortex

Hi UtillMasm,

Are you using a USB ADSL router?

Shantanu Gadgil

Quote from: PBrennick on April 14, 2009, 03:20:06 PM
Why do you need to dial up. An ADSL connection is always hot.

There are types of ADSL ... PPPoE with authentication and without authentication.

Also, in the second type, its "always hot" only if one configures to "dial" from the ADSL modem itself (enter the username/password on the modem) and it authenticates when switched ON.

If not a standard Windows dialer needs to be setup!  :bg

Regards,
Shantanu
To ret is human, to jmp divine!

TASMUser

This question sounds more stupid than it is!
A DSL-dial up using standard phone-dial-up-drivers is safer than the WINXP-standard-solution!
Look here for the ultimate universal RASPPPOE-driver:
http://www.raspppoe.com/

UtillMasm

#5
just make a little program that bring up adsl connection dial dialogbox.


UtillMasm

#7
 :(

That's a VC++ 6.0 MFC sources.

Someone convert it to masm32. :red

Vortex

Hi UtillMasm,

The CodeProject forum's main audience is C/C++ coders so it's not a suprise that you will find a lot of VC++ 6.0 MFC there.

UtillMasm

#9
.386
.model flat,stdcall
include kernel32.inc
include rasdlg.inc
includelib kernel32.lib
includelib rasdlg.lib
.code
start:
push 28h
push 8h
call GetProcessHeap
push eax
call HeapAlloc
mov dword ptr ds:[eax],28h
push eax
push 0
push 0
call RasPhonebookDlgA
push 0
call ExitProcess
end start

I done this. :bg