srpc/configuration.go

25 lines
321 B
Go
Raw Normal View History

2020-02-19 01:36:18 +01:00
package srpc
import (
"log"
)
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)
)