aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/TestSender.st
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2010-12-31 13:40:19 +0100
committerHolger Hans Peter Freyther <zecke@selfish.org>2010-12-31 13:40:19 +0100
commit80ab4c60668ac63ea52fbe5d65a212df934570f5 (patch)
treeffcde81c8632cf601068427b2b59f02e922ac2dd /contrib/TestSender.st
parenteefd72cd74631a6e434244c90147a69943a531f8 (diff)
mtp: Implement the subsystem test and respond with a SSP/SSA
The SCMG handling should be moved to a different file. Right now the list of supported SSNs is not configurable but it should.
Diffstat (limited to 'contrib/TestSender.st')
-rw-r--r--contrib/TestSender.st5
1 files changed, 5 insertions, 0 deletions
diff --git a/contrib/TestSender.st b/contrib/TestSender.st
index 4913416..124a0fe 100644
--- a/contrib/TestSender.st
+++ b/contrib/TestSender.st
@@ -34,4 +34,9 @@ Eval [
msg := #(2 0 0 1 0 0 0 0 0 0 0 6 192 232 197 7 0 23) asByteArray.
datagram data: msg.
socket nextPut: datagram.
+
+ "SST"
+ msg := #(2 0 0 1 0 0 0 0 0 0 0 24 195 233 197 7 224 9 0 3 5 9 2 66 1 4 67 31 0 1 5 3 7 233 5 0 ) asByteArray.
+ datagram data: msg.
+ socket nextPut: datagram.
]