* @version $Revision: 23 $ */ class Stomp_Message_Bytes extends Stomp_Message { /** * Constructor * * @param string $body * @param array $headers */ function __construct ($body, $headers = null) { $this->_init("SEND", $headers, $body); if ($this->headers == null) { $this->headers = array(); } $this->headers['content-length'] = count($body); } } ?>