updates.
[silc.git] / lib / doc / porting.html
index 8ba22464af37dcf1623a09b297513c7cdd3bea4c..64a89f7981c8ef6a864abb7c70e6ddc070a17230 100644 (file)
@@ -47,7 +47,7 @@ but with Toolkit 1.1 it should be relatively straightforward.
 
 <h4>SilcClientOperations structure</h4>
 
-The SilcClientOperation structure has changed significantly.  It no longer
+The SilcClientOperations structure has changed significantly.  It no longer
 has `connected', `disconnected' and `failure' function pointers.  Instead a
 new SilcClientConnectCallback has been defined that is given as argument to
 functions like silc_client_connect_to_server, silc_client_connect_to_client
@@ -60,7 +60,7 @@ added, see the API for the details.
 
 <br />&nbsp;<br />
 Also the `detach' client operation function pointer has been removed.  Instead
-the detachment data is now simply delivered in the SILC_COMMNAD_DETACH
+the detachment data is now simply delivered in the SILC_COMMAND_DETACH
 command reply.
 
 <br />&nbsp;<br />
@@ -159,8 +159,8 @@ initially use in the SILC network.
 The functions silc_client_connect_to_server, silc_client_connect_to_client
 and silc_client_key_exchange can all be used to create new SILC session with
 a remote.  To connect SILC server use silc_client_connect_to_server.  You
-now give the SilcClientCnnectionParams as argument which includes the nickname
-user wants to use, you now can give the public key pair as argument that is
+now give the SilcClientConnectionParams as argument which includes the 
+nicknameuser wants to use, you now can give the public key pair as argument that is
 to be used in the connecting.  The new SilcClientConnectCallback will be
 called once the connection has been established and it delivers the
 SilcClientConection context to the application.  It will be later called
@@ -170,7 +170,7 @@ connecting, if necessary.  In the past canceling connection was not possible.
 
 <br />&nbsp;<br />
 <pre>
-SilcAsyncOperations op;
+SilcAsyncOperation op;
 SilcClientConnectionParams params;
 
 memset(&params, 0, sizeof(params));
@@ -630,7 +630,7 @@ been moved from lib/silccore into lib/silcapputil/.
 <h3><a name="skr"></a>SILC Key Repository library, lib/silcskr/</h3>
 
 A new SILC Key Repository library has been added.  The library provides
-a SILC Key Repository API (a href="silcskr.html">silcskr.h</a>) which provides
+a SILC Key Repository API (<a href="silcskr.html">silcskr.h</a>) which provides
 a repository for storing and retrieving public keys.
 
 <br />&nbsp;<br />