Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libfaim/admin.c

    rcf02dd6 r7869e48  
    22 * Family 0x0007 - Account Administration.
    33 *
    4  * Used for stuff like changing the formating of your screen name, changing your 
    5  * email address, requesting an account confirmation email, getting account info, 
     4 * Used for stuff like changing the formating of your screen name, changing your
     5 * email address, requesting an account confirmation email, getting account info,
    66 *
    77 */
     
    1818 * 0x0013 - Unknown
    1919 *
    20  */ 
     20 */
    2121faim_export int aim_admin_getinfo(aim_session_t *sess, aim_conn_t *conn, fu16_t info)
    2222{
     
    4141 * Subtypes 0x0003 and 0x0005 - Parse account info.
    4242 *
    43  * Called in reply to both an information request (subtype 0x0002) and 
     43 * Called in reply to both an information request (subtype 0x0002) and
    4444 * an information change (subtype 0x0004).
    4545 *
     
    112112
    113113        aim_tlvlist_add_raw(&tl, 0x0001, strlen(newnick), newnick);
    114        
     114
    115115        aim_tlvlist_write(&fr->data, &tl);
    116116        aim_tlvlist_free(&tl);
    117        
     117
    118118        aim_tx_enqueue(sess, fr);
    119119
     
    169169
    170170        aim_tlvlist_add_raw(&tl, 0x0011, strlen(newemail), newemail);
    171        
     171
    172172        aim_tlvlist_write(&fr->data, &tl);
    173173        aim_tlvlist_free(&tl);
    174        
     174
    175175        aim_tx_enqueue(sess, fr);
    176176
Note: See TracChangeset for help on using the changeset viewer.