From: Pekka Riikonen Date: Thu, 21 Feb 2002 20:26:17 +0000 (+0000) Subject: updates. X-Git-Tag: silc.client.0.8.1~33 X-Git-Url: http://git.silcnet.org/gitweb/?p=silc.git;a=commitdiff_plain;h=751b3b46d4acc38c2c35366706f5472c05ce3655 updates. --- diff --git a/README.MACOSX b/README.MACOSX index f1bc8109..98e0a3f7 100644 --- a/README.MACOSX +++ b/README.MACOSX @@ -23,3 +23,7 @@ directory, and give make there: 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 4d09ecbd..7e52a12a 100644 --- 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 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 ============================= diff --git a/lib/doc/LIBINDEX b/lib/doc/LIBINDEX index cf12bfa0..fdee154e 100644 --- a/lib/doc/LIBINDEX +++ b/lib/doc/LIBINDEX @@ -26,6 +26,7 @@ of the Toolkit always delivers the latest version of this reference manual.


  • Introduction to the Manual
    +
  • Programming Conventions
    @BODY@


    diff --git a/lib/doc/programming_conv.html b/lib/doc/programming_conv.html index 4af880df..bd15c611 100644 --- a/lib/doc/programming_conv.html +++ b/lib/doc/programming_conv.html @@ -32,7 +32,7 @@ separate words in the name. Also all defines start with the "SILC_" prefix. Structures
     
    -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 diff --git a/lib/silcske/silcske_status.h b/lib/silcske/silcske_status.h index 4ca238de..2c55ad4a 100644 --- a/lib/silcske/silcske_status.h +++ b/lib/silcske/silcske_status.h @@ -65,7 +65,7 @@ typedef enum { 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; /***/ diff --git a/lib/silcutil/silcmemory.h b/lib/silcutil/silcmemory.h index f05800be..8046909c 100644 --- a/lib/silcutil/silcmemory.h +++ b/lib/silcutil/silcmemory.h @@ -58,7 +58,7 @@ void *silc_malloc(size_t size); * 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. * ***/