Method
bridgeList
(ctx context.Context, reply string, req *proxy.Request)
Source from the content-addressed store, hash-verified
| 101 | } |
| 102 | |
| 103 | func (s *Server) bridgeList(ctx context.Context, reply string, req *proxy.Request) { |
| 104 | list, err := s.ari.Bridge().List(nil) |
| 105 | if err != nil { |
| 106 | s.sendError(reply, err) |
| 107 | return |
| 108 | } |
| 109 | |
| 110 | s.publish(reply, &proxy.Response{ |
| 111 | Keys: list, |
| 112 | }) |
| 113 | } |
| 114 | |
| 115 | func (s *Server) bridgeMOH(ctx context.Context, reply string, req *proxy.Request) { |
| 116 | // bind dialog |
Callers
nothing calls this directly
Tested by
no test coverage detected