public javax.microedition.io.Connection | openPrim(java.lang.String name, int mode, boolean timeouts)Sets up the state of the connection, but
does not actually connect to the server until there's something
to do.
/* Check the suite is permitted to use a SIP connection. */
checkForPermission(name, "sip", Permissions.SIP);
/*
* Construct the SIP handler with the initialized
* security token and invoke it's openPrim checks.
*/
return openConn(name, "sip");
|