Skip to content
Snippets Groups Projects
Commit bf7c937b authored by arw's avatar arw Committed by Thomas Preisner
Browse files

oops, locking. thx izibi

parent b6b47b74
No related branches found
No related tags found
No related merge requests found
......@@ -291,6 +291,7 @@ func transactionFailed(err error) bool {
}
var autoresyncList map[string]*autoresyncEntry = make(map[string]*autoresyncEntry)
var autoresyncListLock sync.RWMutex
type autoresyncEntry struct {
Time int64
......@@ -322,7 +323,9 @@ func checkOffer(remote string, name string, offer string) (bool, error) {
errPanic(err)
}
autoresyncListLock.RLock()
if s, found := autoresyncList[name]; found {
autoresyncListLock.RUnlock()
debugf("[%v] autoresync in progress: %v", remote, s)
if uint64(time.Now().Unix()-s.Time) <= cfg.AutoresyncTime {
if s.Num >= cfg.AutoresyncRepeat && s.Counter-hotp.Counter() < cfg.AutoresyncLookahead {
......@@ -335,8 +338,12 @@ func checkOffer(remote string, name string, offer string) (bool, error) {
} else {
// timeout
debugf("[%v] autoresync timeout: %v", remote, name)
autoresyncListLock.Lock()
delete(autoresyncList, name)
autoresyncListLock.Unlock()
}
} else {
autoresyncListLock.RUnlock()
}
for i = uint64(0); i <= lookahead; i++ {
......@@ -362,6 +369,7 @@ func checkOffer(remote string, name string, offer string) (bool, error) {
for ; i <= cfg.AutoresyncLookahead; i++ {
debugf("[%v] autoresync checking for match (offset %v counter %v)", remote, i, hotp.Counter())
if hotp.Check(offer) {
autoresyncListLock.Lock()
debugf("[%v] autoresync repeat count increase hotp.Counter %v, %v", remote, hotp.Counter(), autoresyncList[name])
if s, found := autoresyncList[name]; found && hotp.Counter()-1 == s.Counter {
s.Time = time.Now().Unix()
......@@ -376,6 +384,7 @@ func checkOffer(remote string, name string, offer string) (bool, error) {
}
debugf("[%v] autoresync repeat count init for %v", remote, name)
}
autoresyncListLock.Unlock()
break
} else {
hotp.Increment()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment