comparison libgaim/protocols/oscar/oscar.h @ 15108:917a50335af3

[gaim-migrate @ 17893] Minor documentation changes committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Mon, 04 Dec 2006 11:36:31 +0000
parents f41cd6f78c60
children d3b057a7e211
comparison
equal deleted inserted replaced
15107:f41cd6f78c60 15108:917a50335af3
387 guint watcher_incoming; 387 guint watcher_incoming;
388 guint watcher_outgoing; 388 guint watcher_outgoing;
389 389
390 guint16 type; 390 guint16 type;
391 guint16 subtype; 391 guint16 subtype;
392 guint16 seqnum; /**< The sequence number of most recent outgoing packet. */ 392 guint16 seqnum_out; /**< The sequence number of most recently sent packet. */
393 guint16 seqnum_in; /**< The sequence number of most recently received packet. */
393 GSList *groups; 394 GSList *groups;
394 GSList *rateclasses; /* Contains nodes of struct rateclass. */ 395 GSList *rateclasses; /* Contains nodes of struct rateclass. */
395 396
396 GQueue *queued_snacs; /**< Contains QueuedSnacs. */ 397 GQueue *queued_snacs; /**< Contains QueuedSnacs. */
397 guint queued_timeout; 398 guint queued_timeout;
500 time_t timestamp; 501 time_t timestamp;
501 gboolean waiting_for_ack; 502 gboolean waiting_for_ack;
502 gboolean in_transaction; 503 gboolean in_transaction;
503 } ssi; 504 } ssi;
504 505
506 /** Contains pointers to handler functions for each family/subtype. */
505 GHashTable *handlerlist; 507 GHashTable *handlerlist;
506 508
507 /** A linked list containing FlapConnections. */ 509 /** A linked list containing FlapConnections. */
508 GSList *oscar_connections; 510 GSList *oscar_connections;
509 511