Open Transport?
Open Transport?
- Subject: Open Transport?
- From: Todd Casey <email@hidden>
- Date: Fri, 3 Oct 2003 06:46:29 -0700 (PDT)
I am trying to write an application that will run on Mac OS 8.6 - 10.2.6 that establishes a PPP Internet Connection programmatically without the users intervention. I would also like to have the username/password/access number hidden from the user (is this possible using OTOptionManagment()?).
Here is what I currently have. The code compiles and runs but it does not seem to even open the modem port. I am currently running OS 10.2.6. Is Open Transport the best method to use in establishing a PPP connection?
// CODE BEGINS
// linked OpenTransportLib
err = InitOpenTransportInContext(kInitOTForApplicationMask, nil);
notifier = NewOTNotifyUPP(Notifier); // I have a Notifier callback function defined earlier
ep = OTOpenEndpointInContext(OTCreateConfiguration(kPPPControlName), 0, NULL, &err, nil);
if(kOTNoError == err)
{
err = OTInstallNotifier(ep, notifier, ep);
err = OTSetAsynchronous(ep);
err = OTSetBlocking(ep);
err = OTIoctl(ep, I_OTGetMiscellaneousEvents, (void *)1);
err = OTIoctl(ep, I_OTConnect, NULL);
err = OTCloseProvider(ep);
}
if(notifier)
{
DisposeOTNotifyUPP(notifier);
}
// CODE ENDS
What am I doing wrong? I would greatly appreciate any help/info. I am new to Mac development and I have tried to search through the Internet and developer.apple.com before posting here.
Thanks,
Todd
The New Yahoo! Shopping - with improved product search
_______________________________________________
macnetworkprog mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/macnetworkprog
Do not post admin requests to the list. They will be ignored.