mirror of
https://github.com/yggdrasil-network/yggdrasil-go
synced 2024-11-09 23:20:26 +03:00
tcp reconnect bufix, test with bufio, and switch back to tcp auto-peering by default to continue testing
This commit is contained in:
parent
a21a039b57
commit
a81c361484
@ -15,6 +15,7 @@ import "time"
|
|||||||
import "errors"
|
import "errors"
|
||||||
import "sync"
|
import "sync"
|
||||||
import "fmt"
|
import "fmt"
|
||||||
|
import "bufio"
|
||||||
|
|
||||||
const tcp_msgSize = 2048 + 65535 // TODO figure out what makes sense
|
const tcp_msgSize = 2048 + 65535 // TODO figure out what makes sense
|
||||||
|
|
||||||
@ -148,7 +149,12 @@ func (iface *tcpInterface) handler(sock *net.TCPConn) {
|
|||||||
blockChan := make(chan struct{})
|
blockChan := make(chan struct{})
|
||||||
iface.conns[info] = blockChan
|
iface.conns[info] = blockChan
|
||||||
iface.mutex.Unlock()
|
iface.mutex.Unlock()
|
||||||
defer close(blockChan)
|
defer func() {
|
||||||
|
iface.mutex.Lock()
|
||||||
|
delete(iface.conns, info)
|
||||||
|
iface.mutex.Unlock()
|
||||||
|
close(blockChan)
|
||||||
|
}()
|
||||||
// Note that multiple connections to the same node are allowed
|
// Note that multiple connections to the same node are allowed
|
||||||
// E.g. over different interfaces
|
// E.g. over different interfaces
|
||||||
linkIn := make(chan []byte, 1)
|
linkIn := make(chan []byte, 1)
|
||||||
@ -158,23 +164,29 @@ func (iface *tcpInterface) handler(sock *net.TCPConn) {
|
|||||||
}
|
}
|
||||||
out := make(chan []byte, 32) // TODO? what size makes sense
|
out := make(chan []byte, 32) // TODO? what size makes sense
|
||||||
defer close(out)
|
defer close(out)
|
||||||
|
buf := bufio.NewWriterSize(sock, 65535)
|
||||||
send := func(msg []byte) {
|
send := func(msg []byte) {
|
||||||
buf := net.Buffers{tcp_msg[:],
|
msgLen := wire_encode_uint64(uint64(len(msg)))
|
||||||
wire_encode_uint64(uint64(len(msg))),
|
before := buf.Buffered()
|
||||||
msg}
|
|
||||||
size := 0
|
|
||||||
for _, bs := range buf {
|
|
||||||
size += len(bs)
|
|
||||||
}
|
|
||||||
start := time.Now()
|
start := time.Now()
|
||||||
buf.WriteTo(sock)
|
buf.Write(tcp_msg[:])
|
||||||
|
buf.Write(msgLen)
|
||||||
|
buf.Write(msg)
|
||||||
timed := time.Since(start)
|
timed := time.Since(start)
|
||||||
pType, _ := wire_decode_uint64(msg)
|
after := buf.Buffered()
|
||||||
if pType == wire_LinkProtocolTraffic {
|
written := (before + len(tcp_msg) + len(msgLen) + len(msg)) - after
|
||||||
p.updateBandwidth(size, timed)
|
if written > 0 {
|
||||||
|
p.updateBandwidth(written, timed)
|
||||||
}
|
}
|
||||||
util_putBytes(msg)
|
util_putBytes(msg)
|
||||||
}
|
}
|
||||||
|
flush := func() {
|
||||||
|
size := buf.Buffered()
|
||||||
|
start := time.Now()
|
||||||
|
buf.Flush()
|
||||||
|
timed := time.Since(start)
|
||||||
|
p.updateBandwidth(size, timed)
|
||||||
|
}
|
||||||
go func() {
|
go func() {
|
||||||
var stack [][]byte
|
var stack [][]byte
|
||||||
put := func(msg []byte) {
|
put := func(msg []byte) {
|
||||||
@ -191,6 +203,7 @@ func (iface *tcpInterface) handler(sock *net.TCPConn) {
|
|||||||
select {
|
select {
|
||||||
case msg, ok := <-out:
|
case msg, ok := <-out:
|
||||||
if !ok {
|
if !ok {
|
||||||
|
flush()
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
put(msg)
|
put(msg)
|
||||||
@ -200,6 +213,7 @@ func (iface *tcpInterface) handler(sock *net.TCPConn) {
|
|||||||
send(msg)
|
send(msg)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
flush()
|
||||||
}
|
}
|
||||||
}()
|
}()
|
||||||
p.out = func(msg []byte) {
|
p.out = func(msg []byte) {
|
||||||
|
@ -118,7 +118,7 @@ func generateConfig() *nodeConfig {
|
|||||||
cfg.Multicast = true
|
cfg.Multicast = true
|
||||||
cfg.LinkLocal = ""
|
cfg.LinkLocal = ""
|
||||||
cfg.IfName = "auto"
|
cfg.IfName = "auto"
|
||||||
cfg.IfMTU = 65535
|
cfg.IfMTU = 1280 //65535
|
||||||
if runtime.GOOS == "windows" {
|
if runtime.GOOS == "windows" {
|
||||||
cfg.IfTAPMode = true
|
cfg.IfTAPMode = true
|
||||||
} else {
|
} else {
|
||||||
@ -177,7 +177,7 @@ func (n *node) listen() {
|
|||||||
saddr := addr.String()
|
saddr := addr.String()
|
||||||
//if _, isIn := n.peers[saddr]; isIn { continue }
|
//if _, isIn := n.peers[saddr]; isIn { continue }
|
||||||
//n.peers[saddr] = struct{}{}
|
//n.peers[saddr] = struct{}{}
|
||||||
n.core.DEBUG_maybeSendUDPKeys(saddr) // FIXME? can result in 2 connections per peer
|
n.core.DEBUG_addTCPConn(saddr) // FIXME? can result in 2 connections per peer
|
||||||
//fmt.Println("DEBUG:", "added multicast peer:", saddr)
|
//fmt.Println("DEBUG:", "added multicast peer:", saddr)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -188,7 +188,7 @@ func (n *node) announce() {
|
|||||||
panic(err)
|
panic(err)
|
||||||
}
|
}
|
||||||
var anAddr net.TCPAddr
|
var anAddr net.TCPAddr
|
||||||
myAddr := n.core.DEBUG_getGlobalUDPAddr()
|
myAddr := n.core.DEBUG_getGlobalTCPAddr()
|
||||||
anAddr.Port = myAddr.Port
|
anAddr.Port = myAddr.Port
|
||||||
destAddr, err := net.ResolveUDPAddr("udp6", multicastAddr)
|
destAddr, err := net.ResolveUDPAddr("udp6", multicastAddr)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
Loading…
Reference in New Issue
Block a user