diff -r 51a74ef9ed63 -r ae94777fff8f Symbian3/SDK/Source/GUID-DBF6760F-D209-4B8F-89D5-A7EFFF7959E2.dita --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Symbian3/SDK/Source/GUID-DBF6760F-D209-4B8F-89D5-A7EFFF7959E2.dita Fri Jun 11 12:39:03 2010 +0100 @@ -0,0 +1,43 @@ + + + + + +Starting +the connection through the destination networkAfter you have selected the destination network to be used, you +can open the data connection. +

To open +the data connection with the selected destination network:

+ +Start the connection +through the Internet destination network using the Connection Manager API. + +Select the best available access point within the Internet destination +network using the Connection Manager API. +

RConnection handle is returned to the network. The connection can +now be used.

+
+
+RSocketServ ss; + +// Connect to ESOCK +ss.Connect(); + +// Open an RConnection object. Note that you must provide an RSocketServ object +RConnection conn; +conn.Open( ss ); + +// Create overrides +TConnSnapPref prefs +prefs.SetSnap( 4 ); + +// Start an Outgoing Connection with overrides +conn.Start( prefs ); + +
\ No newline at end of file