srpc/configuration.go

28 lines
433 B
Go
Raw Normal View History

2020-02-19 01:36:18 +01:00
package srpc
import (
"log"
2020-03-26 01:28:15 +01:00
"time"
2020-02-19 01:36:18 +01:00
)
type LogErrorFunc func(format string, args ...interface{})
var logError = LogErrorFunc(log.Printf)
func SetLogError(f LogErrorFunc) {
logError = f
}
2020-03-25 09:45:23 +01:00
type messageState uint8
const (
FREE messageState = 0
PENDING messageState = 1
)
const (
2020-03-26 02:12:46 +01:00
DefaultMaxClientRequests = int(128)
DefaultRequestTimeout = 30 * time.Second
DefaultSimultanousClientRequests = int(5)
2020-03-25 09:45:23 +01:00
)