-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathconn.go
44 lines (37 loc) · 927 Bytes
/
conn.go
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
package osc
import (
"context"
"errors"
"net"
"strings"
)
const (
// bufSize is the size of read and write buffers.
// SuperCollider synthdef messages can easily have as much as 64K of data.
bufSize = 65536
)
// Common errors.
var (
ErrNilDispatcher = errors.New("nil dispatcher")
ErrPrematureClose = errors.New("server cannot be closed before calling Listen")
)
// Conn defines the methods
type Conn interface {
net.Conn
Context() context.Context
Serve(int, Dispatcher) error
Send(Packet) error
SendTo(net.Addr, Packet) error
SetExactMatch(bool)
}
var invalidAddressRunes = []rune{'*', '?', ',', '[', ']', '{', '}', '#', ' '}
// ValidateAddress returns an error if addr contains
// characters that are disallowed by the OSC spec.
func ValidateAddress(addr string) error {
for _, chr := range invalidAddressRunes {
if strings.ContainsRune(addr, chr) {
return ErrInvalidAddress
}
}
return nil
}