comparison libpurple/protocols/oscar/family_icq.c @ 23626:8c480872b620

Get rid of a few low priority "high priority" comments
author Mark Doliner <mark@kingant.net>
date Mon, 21 Jul 2008 06:44:21 +0000
parents e8bea84f63b6
children 531922f4ea2a
comparison
equal deleted inserted replaced
23625:e8bea84f63b6 23626:8c480872b620
263 byte_stream_putle16(&bs, 0x07d0); /* I command thee. */ 263 byte_stream_putle16(&bs, 0x07d0); /* I command thee. */
264 byte_stream_putle16(&bs, snacid); /* eh. */ 264 byte_stream_putle16(&bs, snacid); /* eh. */
265 byte_stream_putle16(&bs, 0x04ba); /* shrug. */ 265 byte_stream_putle16(&bs, 0x04ba); /* shrug. */
266 byte_stream_putle32(&bs, atoi(uin)); 266 byte_stream_putle32(&bs, atoi(uin));
267 267
268 flap_connection_send_snac_with_priority(od, conn, SNAC_FAMILY_ICQ, 0x0002, 0x0000, snacid, &bs, /* High priority? */ FALSE); 268 flap_connection_send_snac_with_priority(od, conn, SNAC_FAMILY_ICQ, 0x0002, 0x0000, snacid, &bs, FALSE);
269 269
270 byte_stream_destroy(&bs); 270 byte_stream_destroy(&bs);
271 271
272 /* Keep track of this request and the ICQ number and request ID */ 272 /* Keep track of this request and the ICQ number and request ID */
273 info = (struct aim_icq_info *)g_new0(struct aim_icq_info, 1); 273 info = (struct aim_icq_info *)g_new0(struct aim_icq_info, 1);
307 byte_stream_putle16(&bs, 0x07d0); /* I command thee. */ 307 byte_stream_putle16(&bs, 0x07d0); /* I command thee. */
308 byte_stream_putle16(&bs, snacid); /* eh. */ 308 byte_stream_putle16(&bs, snacid); /* eh. */
309 byte_stream_putle16(&bs, 0x051f); /* shrug. */ 309 byte_stream_putle16(&bs, 0x051f); /* shrug. */
310 byte_stream_putle32(&bs, atoi(uin)); 310 byte_stream_putle32(&bs, atoi(uin));
311 311
312 flap_connection_send_snac_with_priority(od, conn, SNAC_FAMILY_ICQ, 0x0002, 0x0000, snacid, &bs, /* High priority? */ FALSE); 312 flap_connection_send_snac_with_priority(od, conn, SNAC_FAMILY_ICQ, 0x0002, 0x0000, snacid, &bs, FALSE);
313 313
314 byte_stream_destroy(&bs); 314 byte_stream_destroy(&bs);
315 315
316 return 0; 316 return 0;
317 } 317 }
881 memcpy(&info->icbm_cookie, cookie, 8); 881 memcpy(&info->icbm_cookie, cookie, 8);
882 882
883 info->next = od->icq_info; 883 info->next = od->icq_info;
884 od->icq_info = info; 884 od->icq_info = info;
885 885
886 flap_connection_send_snac_with_priority(od, conn, 0x0004, 0x0006, 0x0000, snacid, &bs, /* High priority? */ FALSE); 886 flap_connection_send_snac_with_priority(od, conn, 0x0004, 0x0006, 0x0000, snacid, &bs, FALSE);
887 887
888 byte_stream_destroy(&bs); 888 byte_stream_destroy(&bs);
889 } 889 }
890 890
891 g_free(uin); 891 g_free(uin);