srpc/configuration.go

27 lines
374 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 (
DefaultMaxClientRequests = int(128)
2020-03-26 01:28:15 +01:00
DefaultRequestTimeout = 30 * time.Second
2020-03-25 09:45:23 +01:00
)