Add support for binary input/output

This commit is contained in:
Leonid Bugaev
2016-07-13 16:01:25 +03:00
parent 12287d8bae
commit a6d263df1c
15 changed files with 494 additions and 84 deletions
+1
View File
@@ -69,6 +69,7 @@ func payloadHeader(payloadType byte, uuid []byte, timing int64, latency int64) (
copy(header[3+len(uuid):], sTime)
if latency != -1 {
header[3+len(uuid)+len(sTime)] = ' '
copy(header[4+len(uuid)+len(sTime):], sLatency)
}