comparison libpurple/account.h @ 31655:38ba52f4bb96

Add to a comment
author Mark Doliner <mark@kingant.net>
date Mon, 14 Feb 2011 08:47:37 +0000
parents 2a436e0ce977
children d72d728226dc
comparison
equal deleted inserted replaced
31654:b39a2bd81566 31655:38ba52f4bb96
141 * should help performance a lot when these lists are long. This 141 * should help performance a lot when these lists are long. This
142 * matters quite a bit for protocols like MSN, where all your 142 * matters quite a bit for protocols like MSN, where all your
143 * buddies are added to your permit list. Currently we have to 143 * buddies are added to your permit list. Currently we have to
144 * iterate through the entire list if we want to check if someone 144 * iterate through the entire list if we want to check if someone
145 * is permitted or denied. We should do this for 3.0.0. 145 * is permitted or denied. We should do this for 3.0.0.
146 * Or maybe use a GTree.
146 */ 147 */
147 GSList *permit; /**< Permit list. */ 148 GSList *permit; /**< Permit list. */
148 GSList *deny; /**< Deny list. */ 149 GSList *deny; /**< Deny list. */
149 PurplePrivacyType perm_deny; /**< The permit/deny setting. */ 150 PurplePrivacyType perm_deny; /**< The permit/deny setting. */
150 151