2014-11-16 20:13:20 +00:00
|
|
|
// Copyright (C) 2014 The Syncthing Authors.
|
2014-09-29 19:43:32 +00:00
|
|
|
//
|
2015-03-07 20:36:35 +00:00
|
|
|
// This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
// License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
2017-02-09 06:52:18 +00:00
|
|
|
// You can obtain one at https://mozilla.org/MPL/2.0/.
|
2014-08-17 13:01:48 +00:00
|
|
|
|
|
|
|
package beacon
|
|
|
|
|
2015-09-20 13:30:25 +00:00
|
|
|
import (
|
|
|
|
"net"
|
|
|
|
stdsync "sync"
|
|
|
|
|
|
|
|
"github.com/thejerf/suture"
|
|
|
|
)
|
2014-08-17 13:01:48 +00:00
|
|
|
|
|
|
|
type recv struct {
|
|
|
|
data []byte
|
|
|
|
src net.Addr
|
|
|
|
}
|
|
|
|
|
|
|
|
type Interface interface {
|
2015-09-20 13:30:25 +00:00
|
|
|
suture.Service
|
2014-08-17 13:01:48 +00:00
|
|
|
Send(data []byte)
|
|
|
|
Recv() ([]byte, net.Addr)
|
2015-09-20 13:30:25 +00:00
|
|
|
Error() error
|
2014-08-17 13:01:48 +00:00
|
|
|
}
|
|
|
|
|
2015-09-20 13:30:25 +00:00
|
|
|
type errorHolder struct {
|
|
|
|
err error
|
|
|
|
mut stdsync.Mutex // uses stdlib sync as I want this to be trivially embeddable, and there is no risk of blocking
|
|
|
|
}
|
|
|
|
|
|
|
|
func (e *errorHolder) setError(err error) {
|
|
|
|
e.mut.Lock()
|
|
|
|
e.err = err
|
|
|
|
e.mut.Unlock()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (e *errorHolder) Error() error {
|
|
|
|
e.mut.Lock()
|
|
|
|
err := e.err
|
|
|
|
e.mut.Unlock()
|
|
|
|
return err
|
2014-08-17 13:01:48 +00:00
|
|
|
}
|