ref: Rename package ipc to rpc.
We are doing this because rpc better describes what we are offering.
Also now vrpc and rpc are more obviously related.
This has the potential downside of being confused with the go rpc package
but we believe the two packages will ralrely be used together..
MultiPart: 6/11
Change-Id: Ia5c35cb7938ac907be418b495f485aede3621e56
diff --git a/test/testutil/dispatcher.go b/test/testutil/dispatcher.go
index 0b1d3ae..9bc1f1a 100644
--- a/test/testutil/dispatcher.go
+++ b/test/testutil/dispatcher.go
@@ -1,25 +1,25 @@
package testutil
import (
- "v.io/v23/ipc"
+ "v.io/v23/rpc"
"v.io/v23/security"
)
// LeafDispatcher returns a dispatcher for a single object obj, using
// ReflectInvokerOrDie to invoke methods. Lookup only succeeds on the empty
// suffix. The provided auth is returned for successful lookups.
-func LeafDispatcher(obj interface{}, auth security.Authorizer) ipc.Dispatcher {
- return &leafDispatcher{ipc.ReflectInvokerOrDie(obj), auth}
+func LeafDispatcher(obj interface{}, auth security.Authorizer) rpc.Dispatcher {
+ return &leafDispatcher{rpc.ReflectInvokerOrDie(obj), auth}
}
type leafDispatcher struct {
- invoker ipc.Invoker
+ invoker rpc.Invoker
auth security.Authorizer
}
func (d leafDispatcher) Lookup(suffix string) (interface{}, security.Authorizer, error) {
if suffix != "" {
- return nil, nil, ipc.NewErrUnknownSuffix(nil, suffix)
+ return nil, nil, rpc.NewErrUnknownSuffix(nil, suffix)
}
return d.invoker, d.auth, nil
}