if err != nil {
return err
}
- x, err := s.loop.SendRecv(s, conn, req)
+ resp, err := s.loop.HostSyncMsg(s, conn, req)
if err != nil {
return err
}
- resp, ok := x.(safcm.MsgSyncResp)
- if !ok {
- return fmt.Errorf("unexpected response %v", x)
- }
// Display changes
c := frontend.Changes{
}
return resp, nil
}
+
+// HostSyncMsg sends a MsgSyncReq for host via conn and returns the resulting
+// MsgSyncResp.
+func (l *Loop) HostSyncMsg(host Host, conn *rpc.Conn, req safcm.MsgSyncReq) (
+ safcm.MsgSyncResp, error) {
+
+ var empty safcm.MsgSyncResp
+ x, err := l.SendRecv(host, conn, req)
+ if err != nil {
+ return empty, err
+ }
+ resp, ok := x.(safcm.MsgSyncResp)
+ if !ok {
+ return empty, fmt.Errorf("unexpected response %v", x)
+ }
+ return resp, nil
+}