X-Git-Url: https://git.cweiske.de/auerswald-callnotifier.git/blobdiff_plain/8cd74705cae43d0aff80de9c9eed57341cefb957..706f3104305337ecf582897bcc42499fa6623178:/src/callnotifier/EDSS1/Message.php diff --git a/src/callnotifier/EDSS1/Message.php b/src/callnotifier/EDSS1/Message.php index 4c3bd68..d490005 100644 --- a/src/callnotifier/EDSS1/Message.php +++ b/src/callnotifier/EDSS1/Message.php @@ -11,6 +11,7 @@ class EDSS1_Message const DISCONNECT = "\x45"; const RELEASE = "\x4D"; const RELEASE_COMPLETE = "\x5A"; + const FACILITY = "\x62"; const INFORMATION = "\x7B"; /** @@ -28,24 +29,40 @@ class EDSS1_Message /** * Service AccessPoint Identifier + * + * @var integer */ public $sapi; /** * Call/Response bit * - * Is 1 when the message contains a command or - * the answer to a command. + * Is 1 when the message contains a command to the TE or + * the answer to a command from the TE. + * + * 0 when it it is a request from the TE to the network, + * or the answer to a TE request. + * + * @var integer */ public $callResponse; /** * Terminal Endpoint Identifier (internal Telephone ID) + * TEI=127 means broadcast * * @var integer */ public $tei; + /** + * Type of the block + * 0 - information block + * 1 - control block + * @var integer + */ + public $blockType; + /** * Array of EDSS1_Parameter objects *