aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/rtp/rtp_replay.st
diff options
context:
space:
mode:
authorNeels Hofmeyr <neels@hofmeyr.de>2017-09-04 04:16:57 +0200
committerNeels Hofmeyr <neels@hofmeyr.de>2017-09-06 16:33:43 +0200
commit47cd0d2687e9711644008f3d6d1b829d763c520e (patch)
tree39d013e979834b5faaf831d2a3e25229999dd26a /contrib/rtp/rtp_replay.st
parentd6d90ce2597d9bbcc4dda23069cafb1794874fa7 (diff)
drop files unrelated to osmo-msc
These either remain from openbsc.git or slipped in while applying recent patches from openbsc.git and do not belong in osmo-msc. Empty out contrib: remove things that are either obviously unrelated to osmo-msc, or seem old and/or esoteric. Change-Id: I49957769e09eed6d723bf7c3777024b62b3480fd
Diffstat (limited to 'contrib/rtp/rtp_replay.st')
-rw-r--r--contrib/rtp/rtp_replay.st21
1 files changed, 0 insertions, 21 deletions
diff --git a/contrib/rtp/rtp_replay.st b/contrib/rtp/rtp_replay.st
deleted file mode 100644
index e26d07388..000000000
--- a/contrib/rtp/rtp_replay.st
+++ /dev/null
@@ -1,21 +0,0 @@
-"
-Simple UDP replay from the state files
-"
-
-PackageLoader fileInPackage: #Sockets.
-FileStream fileIn: 'rtp_replay_shared.st'.
-
-
-Eval [
- | replay file host dport |
-
- file := Smalltalk arguments at: 1 ifAbsent: [ 'rtpstream.state' ].
- host := Smalltalk arguments at: 2 ifAbsent: [ '127.0.0.1' ].
- dport := (Smalltalk arguments at: 3 ifAbsent: [ '4000' ]) asInteger.
- sport := (Smalltalk arguments at: 4 ifAbsent: [ '0' ]) asInteger.
-
- replay := RTPReplay on: file fromPort: sport.
-
- Transcript nextPutAll: 'Going to stream now'; nl.
- replay streamAudio: host port: dport.
-]