updates.
authorPekka Riikonen <priikone@silcnet.org>
Mon, 18 Dec 2006 14:49:19 +0000 (14:49 +0000)
committerPekka Riikonen <priikone@silcnet.org>
Mon, 18 Dec 2006 14:49:19 +0000 (14:49 +0000)
CHANGES
configure.ad
lib/doc/command_reply_args.html

diff --git a/CHANGES b/CHANGES
index 2258bd7ca83cfd6640df7a95182254e1295a3d40..96ae6d2c43e2a0d5ec53f4b5bfbec4568a686156 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,14 @@
+Sun Dec 17 16:46:55 EET 2006  Pekka Riikonen <priikone@silcnet.org>
+
+       * Removed `detach' client operation.  The detachment data is
+         now delivered in SILC_COMMAND_DETACH command reply to
+         application.  Affected file in lib/silcclient/.
+
+       * Rewrote resuming/detaching in client library.
+
+       * Added boolean encryption indicator for silc_cipher_set_key.
+         Affected files lib/silccrypt/silccipher.[ch].
+
 Wed Dec 13 18:05:50 EET 2006  Pekka Riikonen <priikone@silcnet.org>
 
        * Added silc_likely and silc_unlikely macros for GCC branch
index 3322035e66c2056fe41178aaa7e8d1d8b62f8a83..09d7652e6c6e4859f7da3b1d38f139ed9e2f109e 100644 (file)
@@ -345,14 +345,14 @@ SILC_ASSEMBLER=""
 have_assembler=false
 if test x$want_asm = xtrue; then
   AC_PATH_PROG([NASM], [nasm], [no])
-  if test "x$NASM" != xyes; then
-    SILC_ASSEMBLER="nasm -O2 -felf"
+  if test "x$NASM" != "xno"; then
+    SILC_ASSEMBLER="$NASM -O2 -felf"
     have_assembler=true
   fi
 
   AC_PATH_PROG([YASM], [yasm], [no])
-  if test "x$YASM" != xyes; then
-    SILC_ASSEMBLER="yasm -Xgnu -felf"
+  if test "x$YASM" != "xno"; then
+    SILC_ASSEMBLER="$YASM -Xgnu -felf"
     have_assembler=true
   fi
 fi
index 0ae878b951f3ed6db7aba8e698367a6ec6e3e861..1b366a7a0c63513cfa73b1d189bd06874c492d5e 100644 (file)
@@ -143,7 +143,7 @@ this command reply.  The 'name' and 'info' may be NULL.
 <td><small>
 Returns the new Client ID and new nickname inside the SilcClientEntry.
 The `old_client_id' is the old Client ID used by the client before the
-nickname was changed.
+nickname was changed.  The `nickname' is the new nickname.
 </td>
 <td width="50%"><small>SilcClientEntry local_entry, char *nickname,
 const SilcClientID *old_client_id
@@ -333,10 +333,14 @@ SILC_COMMAND_INVITE command reply.
 <tr>
 <td><small>SILC_COMMAND_DETACH</td>
 <td><small>
-Called after being detached from the SILC network. There is no arguments
-to this reply.
-</td>
-<td width="50%"><small>none
+Called after being detached from the SILC network.  The command reply delivers
+the detachment data buffer `detach_data' that the application should save
+for example into a file.  The data will be needed when resuming back to
+the network.  When resuming the data is saved into SilcClientConnectionParams
+structure and given as argument to silc_client_connect_to_server or
+silc_client_key_exchange functions.
+</td>
+<td width="50%"><small>SilcBuffer detach_data
 </td>
 </tr>