aboutsummaryrefslogtreecommitdiffstats
path: root/syz-hub/hub.go
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2024-05-03 08:44:48 +0200
committerDmitry Vyukov <dvyukov@google.com>2024-05-03 15:57:46 +0000
commit610f2a54d02f8cf4f2454c03bf679b602e6e59b6 (patch)
treedd1768a4e516fe9fb6945613ebf009eda82317f6 /syz-hub/hub.go
parent3a81775029176dd4c693542e6715b985fa7ade4d (diff)
pkg/rpctype: prepare for not using for target communication
Remove things that are only needed for target VM communication: conditional compression, timeout scaling, traffic stats. To minimize diffs when we switch target VM communication to flatrpc.
Diffstat (limited to 'syz-hub/hub.go')
-rw-r--r--syz-hub/hub.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/syz-hub/hub.go b/syz-hub/hub.go
index f7e7e3e48..187d4a1eb 100644
--- a/syz-hub/hub.go
+++ b/syz-hub/hub.go
@@ -61,7 +61,7 @@ func main() {
hub.initHTTP(cfg.HTTP)
- s, err := rpctype.NewRPCServer(cfg.RPC, "Hub", hub, true)
+ s, err := rpctype.NewRPCServer(cfg.RPC, "Hub", hub)
if err != nil {
log.Fatalf("failed to create rpc server: %v", err)
}