| 41 | static str fs_event_body = str_init("body"); |
| 42 | |
| 43 | int fss_ipc_init(void) |
| 44 | { |
| 45 | ipc_hdl_rcv_event = ipc_register_handler(fss_raise_freeswitch_event, |
| 46 | "Receive FS event"); |
| 47 | if (ipc_bad_handler_type(ipc_hdl_rcv_event)) { |
| 48 | LM_ERR("failed to register 'Receive FS event' IPC handler\n"); |
| 49 | return -1; |
| 50 | } |
| 51 | |
| 52 | return 0; |
| 53 | } |
| 54 | |
| 55 | int fss_evi_init(void) |
| 56 | { |
no test coverage detected