aboutsummaryrefslogtreecommitdiff
path: root/src/callnotifier/EDSS1/Message.php
diff options
context:
space:
mode:
authorChristian Weiske <cweiske@cweiske.de>2012-07-20 22:29:51 +0200
committerChristian Weiske <cweiske@cweiske.de>2012-07-20 22:29:51 +0200
commit706f3104305337ecf582897bcc42499fa6623178 (patch)
treec7099907ef8c1829fedb74182f228132361aa757 /src/callnotifier/EDSS1/Message.php
parent8cd74705cae43d0aff80de9c9eed57341cefb957 (diff)
downloadauerswald-callnotifier-706f3104305337ecf582897bcc42499fa6623178.tar.gz
auerswald-callnotifier-706f3104305337ecf582897bcc42499fa6623178.zip
separation of parameter types. numbers are highlighted in red now
Diffstat (limited to 'src/callnotifier/EDSS1/Message.php')
-rw-r--r--src/callnotifier/EDSS1/Message.php21
1 files changed, 19 insertions, 2 deletions
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,25 +29,41 @@ 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
*
* @var array