From c802ba2371b8db89f3b54f25da0f46f0a61e4b47 Mon Sep 17 00:00:00 2001 From: Pekka Riikonen Date: Mon, 18 Dec 2006 14:49:19 +0000 Subject: [PATCH] updates. --- CHANGES | 11 +++++++++++ configure.ad | 8 ++++---- lib/doc/command_reply_args.html | 14 +++++++++----- 3 files changed, 24 insertions(+), 9 deletions(-) diff --git a/CHANGES b/CHANGES index 2258bd7c..96ae6d2c 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,14 @@ +Sun Dec 17 16:46:55 EET 2006 Pekka Riikonen + + * 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 * Added silc_likely and silc_unlikely macros for GCC branch diff --git a/configure.ad b/configure.ad index 3322035e..09d7652e 100644 --- a/configure.ad +++ b/configure.ad @@ -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 diff --git a/lib/doc/command_reply_args.html b/lib/doc/command_reply_args.html index 0ae878b9..1b366a7a 100644 --- a/lib/doc/command_reply_args.html +++ b/lib/doc/command_reply_args.html @@ -143,7 +143,7 @@ this command reply. The 'name' and 'info' may be NULL. 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. SilcClientEntry local_entry, char *nickname, const SilcClientID *old_client_id @@ -333,10 +333,14 @@ SILC_COMMAND_INVITE command reply. SILC_COMMAND_DETACH -Called after being detached from the SILC network. There is no arguments -to this reply. - -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. + +SilcBuffer detach_data -- 2.24.0