nn::ssl::Initialize Function

Syntax

Result Initialize(
     void
);

Arguments

None.

Return Values

Returns the function's execution result. Returns one of the Result values listed below.
Value Description
ResultSuccess Process was successful. The SSL library can be used.
ResultClientProcessMaxErr Error indicating that the maximum number of available client processes are already in use. Trying again later may succeed (provided another module calls Finalize in the meantime).
ResultIpcSessionMaxErr Error indicating that the maximum number of IPC sessions are already connected. Trying again later may succeed (provided another IPC session succeeds in the meantime).
ResultAlreadyInitializedErr Error indicating initialization is already complete. The SSL library is alraedy in use.
A value other than the above. Unexpected error (see ssl_Result.h for error details).

Description

Initializes the SSL library. Processes linking the SSL library must call this function once before using the library.

Revision History

2010/06/14
Initial version.

CONFIDENTIAL