aboutsummaryrefslogtreecommitdiff
path: root/cmd/dendrite-demo-yggdrasil
diff options
context:
space:
mode:
authorNeil Alexander <neilalexander@users.noreply.github.com>2020-06-10 17:18:37 +0100
committerNeil Alexander <neilalexander@users.noreply.github.com>2020-06-10 17:18:37 +0100
commit63a24e81c49f8956de50a876c45c32775bd2acc6 (patch)
tree6fcbd6c8e4257e269f0c2487e72d55a86952ae94 /cmd/dendrite-demo-yggdrasil
parent399b6ae334fe2559d8d141ba42ff6ff960887993 (diff)
Yggdrasil demo tweaks
Diffstat (limited to 'cmd/dendrite-demo-yggdrasil')
-rw-r--r--cmd/dendrite-demo-yggdrasil/main.go6
-rw-r--r--cmd/dendrite-demo-yggdrasil/yggconn/session.go21
2 files changed, 18 insertions, 9 deletions
diff --git a/cmd/dendrite-demo-yggdrasil/main.go b/cmd/dendrite-demo-yggdrasil/main.go
index 94e94d8d..8bf1f756 100644
--- a/cmd/dendrite-demo-yggdrasil/main.go
+++ b/cmd/dendrite-demo-yggdrasil/main.go
@@ -96,9 +96,9 @@ func main() {
httpServer := &http.Server{
Addr: ":0",
TLSNextProto: map[string]func(*http.Server, *tls.Conn, http.Handler){},
- ReadTimeout: 30 * time.Second,
- WriteTimeout: 30 * time.Second,
- IdleTimeout: 60 * time.Second,
+ ReadTimeout: 5 * time.Second,
+ WriteTimeout: 5 * time.Second,
+ IdleTimeout: 15 * time.Second,
BaseContext: func(_ net.Listener) context.Context {
return context.Background()
},
diff --git a/cmd/dendrite-demo-yggdrasil/yggconn/session.go b/cmd/dendrite-demo-yggdrasil/yggconn/session.go
index a9bb15f7..32ae014a 100644
--- a/cmd/dendrite-demo-yggdrasil/yggconn/session.go
+++ b/cmd/dendrite-demo-yggdrasil/yggconn/session.go
@@ -25,8 +25,8 @@ import (
func (n *Node) yamuxConfig() *yamux.Config {
cfg := yamux.DefaultConfig()
- cfg.EnableKeepAlive = true
- cfg.KeepAliveInterval = time.Second * 30
+ cfg.EnableKeepAlive = false
+ cfg.ConnectionWriteTimeout = time.Second * 5
cfg.MaxMessageSize = 65535
cfg.ReadBufSize = 655350
return cfg
@@ -40,6 +40,8 @@ func (n *Node) listenFromYgg() {
return
}
var session *yamux.Session
+ // If the remote address is lower than ours then we'll be the
+ // server. Otherwse we'll be the client.
if strings.Compare(conn.RemoteAddr().String(), n.DerivedServerName()) < 0 {
session, err = yamux.Server(conn, n.yamuxConfig())
} else {
@@ -55,6 +57,11 @@ func (n *Node) listenFromYgg() {
func (n *Node) listenFromYggConn(session *yamux.Session) {
n.sessions.Store(session.RemoteAddr().String(), session)
defer n.sessions.Delete(session.RemoteAddr())
+ defer func() {
+ if err := session.Close(); err != nil {
+ n.log.Println("session.Close:", err)
+ }
+ }()
for {
st, err := session.AcceptStream()
@@ -90,16 +97,18 @@ func (n *Node) Dial(network, address string) (net.Conn, error) {
func (n *Node) DialContext(ctx context.Context, network, address string) (net.Conn, error) {
s, ok1 := n.sessions.Load(address)
session, ok2 := s.(*yamux.Session)
- if !ok1 || !ok2 {
+ if !ok1 || !ok2 || (ok1 && ok2 && session.IsClosed()) {
conn, err := n.dialer.DialContext(ctx, network, address)
if err != nil {
n.log.Println("n.dialer.DialContext:", err)
return nil, err
}
- if strings.Compare(address, n.DerivedServerName()) > 0 {
- session, err = yamux.Client(conn, n.yamuxConfig())
- } else {
+ // If the remote address is lower than ours then we will be the
+ // server. Otherwise we'll be the client.
+ if strings.Compare(conn.RemoteAddr().String(), n.DerivedServerName()) < 0 {
session, err = yamux.Server(conn, n.yamuxConfig())
+ } else {
+ session, err = yamux.Client(conn, n.yamuxConfig())
}
if err != nil {
return nil, err