veyron2/ipc: change Lookup to take second arg that is the method being invoked.
- update all uses of Lookup
- rename SoloDispatcher to LeafDispatcher (since that seems like a better
name) and create a RootDispatcher which doesn't have the test that
LeafDispatcher does. Update all uses.
Arguably, these should be separate CLs, but since I lumped together
since they touch many of the same files.
Change-Id: I8b7aab4abecbf702f49a3851c50c48e596b6da57
diff --git a/runtimes/google/vsync/vsyncd.go b/runtimes/google/vsync/vsyncd.go
index 2b74ce7..9df19d0 100644
--- a/runtimes/google/vsync/vsyncd.go
+++ b/runtimes/google/vsync/vsyncd.go
@@ -61,7 +61,7 @@
return &syncDispatcher{ipc.ReflectInvoker(s), auth}
}
-func (d *syncDispatcher) Lookup(suffix string) (ipc.Invoker, security.Authorizer, error) {
+func (d *syncDispatcher) Lookup(suffix, method string) (ipc.Invoker, security.Authorizer, error) {
if strings.HasSuffix(suffix, "sync") {
return d.server, d.auth, nil
}