diff -r 43e37759235e -r 51a74ef9ed63 Symbian3/SDK/Source/GUID-50BE8F1A-513A-433C-B045-66658FC226D7.dita --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Symbian3/SDK/Source/GUID-50BE8F1A-513A-433C-B045-66658FC226D7.dita Wed Mar 31 11:11:55 2010 +0100 @@ -0,0 +1,40 @@ + + + + + +Client/server +communication +

Inter Process +Communication (IPC) is the basis for client/server architecture. Clients +and servers run in different threads, although not necessarily in different +processes, and communicate through message passing protocol. There are no +direct pointers between the parties, leaving the integrity of the server and +its resources untouched by clients. For more information, see Introduction +to the client/server architecture.

+

Communication between the client and the server is managed by Inter-thread data transfer. +Only the server and its clients can decode the parameters of the message. +This is also a security feature, because process boundaries are separators +of memory space, direct pointers to the client's data structures cannot be +delivered. All data not fitting in the provided integers must be represented +as a descriptor, +and an address to the descriptor (or actually a TPckg object) +is delivered within the message. The server then uses safe inter-thread read +and write functions to access the provided descriptor.

+

The following figure shows the relationship of the TDesC and TPckg classes.

+Relationship of a message package and a descriptor class +

Consider the following issues when implementing the client-side API:

+ +
\ No newline at end of file