()
| 322 | } |
| 323 | |
| 324 | func pluginsShutdown() { |
| 325 | if globals.plugins == nil { |
| 326 | return |
| 327 | } |
| 328 | |
| 329 | for i := range globals.plugins { |
| 330 | globals.plugins[i].conn.Close() |
| 331 | } |
| 332 | } |
| 333 | |
| 334 | func pluginGenerateClientReq(sess *Session, msg *ClientComMessage) *pbx.ClientReq { |
| 335 | cmsg := pbCliSerialize(msg) |
no test coverage detected
searching dependent graphs…