comparison libpurple/protocols/oscar/oscar.h @ 24665:531922f4ea2a

Minor cleanup: remove od->sn, since it's the same as PurpleAccount->username
author Mark Doliner <mark@kingant.net>
date Sun, 07 Dec 2008 23:34:12 +0000
parents 5e7a013bb75e
children e4b1ba7c351c ea70a446dde4
comparison
equal deleted inserted replaced
24664:1f9700b825a4 24665:531922f4ea2a
486 guint maxdenies; /* max users on deny list */ 486 guint maxdenies; /* max users on deny list */
487 guint maxsiglen; /* max size (bytes) of profile */ 487 guint maxsiglen; /* max size (bytes) of profile */
488 guint maxawaymsglen; /* max size (bytes) of posted away message */ 488 guint maxawaymsglen; /* max size (bytes) of posted away message */
489 } rights; 489 } rights;
490 490
491 /* ---- Client Accessible ------------------------ */
492
493 /* Our screen name. */
494 /* TODO: Get rid of this and use purple_account_get_username() everywhere? */
495 char sn[MAXSNLEN+1];
496
497 PurpleConnection *gc; 491 PurpleConnection *gc;
498
499 /* ---- Internal Use Only ------------------------ */
500 492
501 void *modlistv; 493 void *modlistv;
502 494
503 /* 495 /*
504 * Outstanding snac handling 496 * Outstanding snac handling
1585 int byte_stream_putle16(ByteStream *bs, guint16 v); 1577 int byte_stream_putle16(ByteStream *bs, guint16 v);
1586 int byte_stream_putle32(ByteStream *bs, guint32 v); 1578 int byte_stream_putle32(ByteStream *bs, guint32 v);
1587 int byte_stream_putraw(ByteStream *bs, const guint8 *v, int len); 1579 int byte_stream_putraw(ByteStream *bs, const guint8 *v, int len);
1588 int byte_stream_putstr(ByteStream *bs, const char *str); 1580 int byte_stream_putstr(ByteStream *bs, const char *str);
1589 int byte_stream_putbs(ByteStream *bs, ByteStream *srcbs, int len); 1581 int byte_stream_putbs(ByteStream *bs, ByteStream *srcbs, int len);
1582 int byte_stream_putuid(ByteStream *bs, OscarData *od);
1590 int byte_stream_putcaps(ByteStream *bs, guint32 caps); 1583 int byte_stream_putcaps(ByteStream *bs, guint32 caps);
1591 1584
1592 /* 1585 /*
1593 * Generic SNAC structure. Rarely if ever used. 1586 * Generic SNAC structure. Rarely if ever used.
1594 */ 1587 */