equal
deleted
inserted
replaced
86 * @since Series 60 3.1 |
86 * @since Series 60 3.1 |
87 * @param TRequestStatus &aRequest |
87 * @param TRequestStatus &aRequest |
88 * @return void * |
88 * @return void * |
89 */ |
89 */ |
90 IMPORT_C void Connect(TRequestStatus &aStatus); |
90 IMPORT_C void Connect(TRequestStatus &aStatus); |
|
91 |
|
92 /** |
|
93 * A method that makes Socket Connection. |
|
94 * @since Series 60 3.1 |
|
95 * @return None |
|
96 * @param aPrompt used to show connection prompt using OCC Api's. |
|
97 * @param aWlanOnly used to differentiate connection for GPRS and WLAN using OCC Api's |
|
98 */ |
|
99 IMPORT_C void Connect(TRequestStatus &aStatus,TBool aPrompt,TBool aWlanOnly); |
|
100 |
91 |
101 |
92 IMPORT_C void CloseConnection(); |
102 IMPORT_C void CloseConnection(); |
93 |
103 |
94 IMPORT_C TInt GetPortNumberUsed(); |
104 IMPORT_C TInt GetPortNumberUsed(); |
95 |
105 |
393 TInt iListenCount; |
403 TInt iListenCount; |
394 |
404 |
395 // Number of client connected |
405 // Number of client connected |
396 TInt iConnectClients; |
406 TInt iConnectClients; |
397 |
407 |
|
408 TBool iPrompt; |
|
409 |
|
410 TBool iWlanOnly; |
|
411 |
|
412 |
|
413 |
|
414 |
|
415 |
398 }; |
416 }; |
399 |
417 |
400 #endif // C_CSUPLCONNECTION_H |
418 #endif // C_CSUPLCONNECTION_H |
401 |
419 |
402 // End of File |
420 // End of File |