* @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 */ class Oscar_SNAC_Service_Status extends Oscar_SNAC { /* About this class */ const SNAC_FAMILY = 0x0001; const SNAC_SERVICE = 0x0021; // {{{ parse /** * Parse an incoming packet * * @access public * @return void */ public function parse () { # TODO: Implement this print "0x21 Status " . bin2hex ($this->Data) . "\n"; } // }}} // {{{ generate /** * Create string-representation of this class * * @access public * @return string */ public function generate () { # TODO: Implement this return parent::generate (); } // }}} } ?>