updates.
authorPekka Riikonen <priikone@silcnet.org>
Thu, 21 Feb 2002 20:26:17 +0000 (20:26 +0000)
committerPekka Riikonen <priikone@silcnet.org>
Thu, 21 Feb 2002 20:26:17 +0000 (20:26 +0000)
README.MACOSX
TODO
lib/doc/LIBINDEX
lib/doc/programming_conv.html
lib/silcske/silcske_status.h
lib/silcutil/silcmemory.h

index f1bc8109ec2fd2fb93d207ccf10af20044834af4..98e0a3f783b71539784210af91ce55be3652ccfd 100644 (file)
@@ -23,3 +23,7 @@ directory, and give make there:
        make
 
 This will compile only the libraries, and nothing else.
        make
 
 This will compile only the libraries, and nothing else.
+
+To install the compiled Toolkit into your system give the command:
+
+       make install
diff --git a/TODO b/TODO
index 4d09ecbd5b046b95431962b241e3230a00b132ba..7e52a12a5aea3d05ab3ba58e2a2f68676c81b079 100644 (file)
--- a/TODO
+++ b/TODO
@@ -86,6 +86,11 @@ TODO/bugs In SILC Libraries
  o SILC RNG does not implement random seed files, and they should be
    implemented.
 
  o SILC RNG does not implement random seed files, and they should be
    implemented.
 
+ o The SilcSocketConnection in the SFTP interface is actually redundant
+   and should perhaps be removed.  The application can save it in the
+   context it provides, which is delivered by SFTP libary to all 
+   callback functions.
+
 
 TODO in Toolkit Documentation
 =============================
 
 TODO in Toolkit Documentation
 =============================
index cf12bfa0492a91778d5dbc578ed0f08efc177262..fdee154e66003217133cd37561386d7a9e841ca4 100644 (file)
@@ -26,6 +26,7 @@ of the Toolkit always delivers the latest version of this reference manual.
 
 <br /><br /><br />
 <li><a href="intro_reference.html">Introduction to the Manual</a><br />
 
 <br /><br /><br />
 <li><a href="intro_reference.html">Introduction to the Manual</a><br />
+<li><a href="programming_conv.html">Programming Conventions</a><br />
 @BODY@
 
 <br /><br /><br />
 @BODY@
 
 <br /><br /><br />
index 4af880dfbf4f0c1e28a848b0043cf5406a2c584f..bd15c611063844baaa79688f46e0ffe661af2c55 100644 (file)
@@ -32,7 +32,7 @@ separate words in the name.  Also all defines start with the "SILC_" prefix.
 <b>Structures</b>
 
 <br />&nbsp;<br />
 <b>Structures</b>
 
 <br />&nbsp;<br />
-All structure names being with "Silc" prefix, and the name is mixed-case,
+All structure names begin with "Silc" prefix, and the name is mixed-case,
 for example: SilcClientConnection, SilcCommandPayload.  Many of the 
 structures used in SILC are actually private structures, and application
 cannot access them directly.  In these cases the structures are forward
 for example: SilcClientConnection, SilcCommandPayload.  Many of the 
 structures used in SILC are actually private structures, and application
 cannot access them directly.  In these cases the structures are forward
index 4ca238de02a1750797c763b3fad56cac6b0cac68..2c55ad4ac3df2afadac50ed135ec52af67864237 100644 (file)
@@ -65,7 +65,7 @@ typedef enum {
   SILC_SKE_STATUS_BAD_PAYLOAD_LENGTH,         /* Payload includes garbage */
 
   /* Other internal status types */
   SILC_SKE_STATUS_BAD_PAYLOAD_LENGTH,         /* Payload includes garbage */
 
   /* Other internal status types */
-  SILC_SKE_STATUS_FREED,                      /* Internal libary status */
+  SILC_SKE_STATUS_FREED,                      /* Internal library status */
 } SilcSKEStatus;
 /***/
 
 } SilcSKEStatus;
 /***/
 
index f05800bec6bf98fa623c81eec712bbbd4eeae58b..8046909cfd7928d681505dfb9591024434ec73bc 100644 (file)
@@ -58,7 +58,7 @@ void *silc_malloc(size_t size);
  * DESCRIPTION
  *
  *    Allocates memory of for an array of `items' elements of `size' bytes
  * DESCRIPTION
  *
  *    Allocates memory of for an array of `items' elements of `size' bytes
- *    and returns pointer to the allocated memory area.  The memory are is
+ *    and returns pointer to the allocated memory area.  The memory area is
  *    also zeroed.  Free the memory by calling silc_free.
  *
  ***/
  *    also zeroed.  Free the memory by calling silc_free.
  *
  ***/