comparison libpurple/protocols/oscar/family_admin.c @ 25416:6e1967b0f90b

Change "screen name" to "username" or "buddy name" in a whole bunch of places in the code. I've been using the definitions from the jabber specs, where "user" is me and "buddy" is someone on my buddy list.
author Mark Doliner <mark@kingant.net>
date Mon, 26 Jan 2009 09:12:04 +0000
parents 9c0ee2491ed1
children bbb27d65681f
comparison
equal deleted inserted replaced
25415:584063555949 25416:6e1967b0f90b
19 */ 19 */
20 20
21 /* 21 /*
22 * Family 0x0007 - Account Administration. 22 * Family 0x0007 - Account Administration.
23 * 23 *
24 * Used for stuff like changing the formating of your screen name, changing your 24 * Used for stuff like changing the formating of your username, changing your
25 * email address, requesting an account confirmation email, getting account info, 25 * email address, requesting an account confirmation email, getting account info,
26 *
27 */ 26 */
28 27
29 #include "oscar.h" 28 #include "oscar.h"
30 29
31 /** 30 /**
32 * Subtype 0x0002 - Request a bit of account info. 31 * Subtype 0x0002 - Request a bit of account info.
33 * 32 *
34 * Info should be one of the following: 33 * Info should be one of the following:
35 * 0x0001 - Screen name formatting 34 * 0x0001 - Username formatting
36 * 0x0011 - Email address 35 * 0x0011 - Email address
37 * 0x0013 - Unknown 36 * 0x0013 - Unknown
38 */ 37 */
39 void 38 void
40 aim_admin_getinfo(OscarData *od, FlapConnection *conn, guint16 info) 39 aim_admin_getinfo(OscarData *od, FlapConnection *conn, guint16 info)
109 g_free(url); 108 g_free(url);
110 g_free(email); 109 g_free(email);
111 } 110 }
112 111
113 /** 112 /**
114 * Subtype 0x0004 - Set screenname formatting. 113 * Subtype 0x0004 - Set the formatting of username (change spaces and capitalization).
115 */ 114 */
116 void 115 void
117 aim_admin_setnick(OscarData *od, FlapConnection *conn, const char *newnick) 116 aim_admin_setnick(OscarData *od, FlapConnection *conn, const char *newnick)
118 { 117 {
119 ByteStream bs; 118 ByteStream bs;