aboutsummaryrefslogtreecommitdiffstats
path: root/vm/vmimpl
diff options
context:
space:
mode:
Diffstat (limited to 'vm/vmimpl')
-rw-r--r--vm/vmimpl/vmimpl.go12
1 files changed, 7 insertions, 5 deletions
diff --git a/vm/vmimpl/vmimpl.go b/vm/vmimpl/vmimpl.go
index a9afdc1f1..bd565c8aa 100644
--- a/vm/vmimpl/vmimpl.go
+++ b/vm/vmimpl/vmimpl.go
@@ -129,16 +129,18 @@ func (err InfraError) InfraError() (string, []byte) {
}
// Register registers a new VM type within the package.
-func Register(typ string, ctor ctorFunc, allowsOvercommit bool) {
+func Register(typ string, ctor ctorFunc, allowsOvercommit, netCompression bool) {
Types[typ] = Type{
- Ctor: ctor,
- Overcommit: allowsOvercommit,
+ Ctor: ctor,
+ Overcommit: allowsOvercommit,
+ NetCompression: netCompression,
}
}
type Type struct {
- Ctor ctorFunc
- Overcommit bool
+ Ctor ctorFunc
+ Overcommit bool
+ NetCompression bool
}
type ctorFunc func(env *Env) (Pool, error)