blob: fa431cee176de216af5582336c5d3e6f0ecea198 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
package hotline
import (
"bytes"
"encoding/binary"
"errors"
)
type transfer struct {
Protocol [4]byte // "HTXF" 0x48545846
ReferenceNumber [4]byte // Unique ID generated for the transfer
DataSize [4]byte // File size
RSVD [4]byte // Not implemented in Hotline Protocol
}
var HTXF = [4]byte{0x48, 0x54, 0x58, 0x46} // (HTXF) is the only supported transfer protocol
func (tf *transfer) Write(b []byte) (int, error) {
if err := binary.Read(bytes.NewReader(b), binary.BigEndian, tf); err != nil {
return 0, err
}
if tf.Protocol != HTXF {
return 0, errors.New("invalid protocol")
}
return len(b), nil
}
|