comparison libpurple/protocols/qq/utils.c @ 23753:5f454b975a99

2008.08.10 - csyfek <csyfek(at)gmail.com> * Commit to Pidgin 2008.08.06 - ccpaging <ecc_hy(at)hotmail.com> * Rename names of variables, Group, to Room * Functions of group_network merged into qq_network and qq_process * Canceled managing glist of group packet, add sub_cmdd and room_id to transaction * Fixed error of demo group: If 'room list' and 'room infor' are not setup, response received from server will emits 'room_id = 0' packet. 2008.08.04 - ccpaging <ecc_hy(at)hotmail.com> * Use new crypt/decrypt functions * Rename crypt.c/h to qq_crypt.c/h * Clean code of decrypt functions * Fixed decryption failure 2008.08.04 - csyfek <csyfek(at)gmail.com> * Update AUTHORS
author SHiNE CsyFeK <csyfek@gmail.com>
date Sun, 10 Aug 2008 04:32:14 +0000
parents 1c50f12b1c52
children 967344bc404d c0c82c50897f
comparison
equal deleted inserted replaced
23748:107166bb2a64 23753:5f454b975a99
312 /* dump hex value */ 312 /* dump hex value */
313 for (j = 0; j < 16; j++) 313 for (j = 0; j < 16; j++)
314 if ((i + j) < bytes) 314 if ((i + j) < bytes)
315 g_string_append_printf(str, " %02x", buffer[i + j]); 315 g_string_append_printf(str, " %02x", buffer[i + j]);
316 else 316 else
317 g_string_append(str, " "); 317 g_string_append(str, " --");
318 g_string_append(str, " "); 318 g_string_append(str, " ");
319 319
320 /* dump ascii value */ 320 /* dump ascii value */
321 for (j = 0; j < 16 && (i + j) < bytes; j++) { 321 for (j = 0; j < 16 && (i + j) < bytes; j++) {
322 ch = buffer[i + j] & 127; 322 ch = buffer[i + j] & 127;