* @revision 01 * @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 */ class Oscar_TLV_Message_Params extends Oscar_TLV_Helper_u16 { /* Type of this TLV */ const TYPE = 0x0011; public $Params = array (); // {{{ parse /** * Parse this TLV * * @access public * @return void */ public function parse () { while (($this->Data != "") && ($str = Oscar_Common::string16 ($this->Data, 0, true))) $this->Params [] = $str; } // }}} } ?>