diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2010-08-15 14:02:52 +0100 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2010-08-15 14:02:52 +0100 |
commit | 5a7af1ba940521a65b3611e5f96ffa9306497e45 (patch) | |
tree | c78f43bd64968a4e6753aaa1f8eca2aecce9c12c /protocols/msn/msn.h | |
parent | ff27648aee17e649cdd1e47f503271e4fccbff43 (diff) |
The ADL command doesn't support >150 contacts. Split it up.
Diffstat (limited to 'protocols/msn/msn.h')
-rw-r--r-- | protocols/msn/msn.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/protocols/msn/msn.h b/protocols/msn/msn.h index c7529803..f6666178 100644 --- a/protocols/msn/msn.h +++ b/protocols/msn/msn.h @@ -93,7 +93,12 @@ struct msn_data const struct msn_away_state *away_state; GSList *groups; + + /* Mostly used for sending the ADL command; since MSNP13 the client + is responsible for downloading the contact list and then sending + it to the MSNP server. */ GTree *domaintree; + int adl_todo; }; struct msn_switchboard @@ -163,6 +168,7 @@ typedef enum MSN_BUDDY_BL = 4, MSN_BUDDY_RL = 8, MSN_BUDDY_PL = 16, + MSN_BUDDY_ADL_SYNCED = 256, } msn_buddy_flags_t; struct msn_buddy_data |