-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathquic.go
57 lines (45 loc) · 1.3 KB
/
quic.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
45
46
47
48
49
50
51
52
53
54
55
56
57
package quic
import (
"net/url"
"path/filepath"
"github.com/nanomsg/mangos"
quic "github.com/lucas-clemente/quic-go"
"github.com/pkg/errors"
)
const (
// OptionTLSConfig maps to a *tls.Config value
OptionTLSConfig = "QUIC-TLS-CONFIG"
// OptionQUICConfig maps to a *quic.Config value
OptionQUICConfig = "QUIC-UDP-CONFIG"
// OptionAcceptTimeout limits the amount of time we wait to accept a connection
)
type transport struct{}
func (transport) Scheme() string { return "quic" }
func (t transport) NewDialer(addr string, sock mangos.Socket) (mangos.PipeDialer, error) {
u, err := url.ParseRequestURI(addr)
if err != nil {
return nil, errors.Wrap(err, "url parse")
}
u.Path = filepath.Clean(u.Path)
return &dialer{
netloc: netloc{u},
sock: sock,
opt: newOpt(),
dialMux: newDialMux(sock, mux),
}, nil
}
func (t transport) NewListener(addr string, sock mangos.Socket) (mangos.PipeListener, error) {
u, err := url.ParseRequestURI(addr)
if err != nil {
return nil, errors.Wrap(err, "url parse")
}
u.Path = filepath.Clean(u.Path)
return &listener{
netloc: netloc{u},
sock: sock,
opt: newOpt(),
listenMux: newListenMux(mux, quic.ListenAddr),
}, nil
}
// NewTransport allocates a new quic:// transport.
func NewTransport() mangos.Transport { return transport{} }