* @revision 03 * @license http://creativecommons.org/licenses/by-sa/3.0/de/ Creative Commons Attribution-Share Alike 3.0 Germany * @homepage http://oss.tiggerswelt.net/oscar/ * @copyright Copyright © 2009 tiggersWelt.net */ /** * 0x0004 client Set group permissions mask * 0x0005 client Add to visible list * 0x0006 client Delete from visible list * 0x0007 client Add to invisible list * 0x0008 client Delete from invisible list * 0x0009 server Service error * 0x000A client Add to visible list (?) * 0x000B client Delete from visible list (?) */ require_once ("oscar/snac/helper/tlv.php"); require_once ("oscar/snac/helper/error.php"); class Oscar_SNAC_Privacy extends Oscar_SNAC { const SNAC_FAMILY = 0x0009; const SNAC_VERSION = 0x0001; const SNAC_TOOLID = 0x0110; const SNAC_TOOL_VERSION = 0x164F; } class Oscar_SNAC_Privacy_Error extends Oscar_SNAC_Helper_Error { /* About this class */ const SNAC_FAMILY = 0x0009; const SNAC_SERVICE = 0x0001; } class Oscar_SNAC_Privacy_Request extends Oscar_SNAC { /* About this class */ const SNAC_FAMILY = 0x0009; const SNAC_SERVICE = 0x0002; } class Oscar_SNAC_Privacy_Response extends Oscar_SNAC_Helper_TLV { /* About this class */ const SNAC_FAMILY = 0x0009; const SNAC_SERVICE = 0x0003; } ?>