| 183 | } |
| 184 | |
| 185 | void |
| 186 | cib_post_notify(int options, const char *op, xmlNode * update, |
| 187 | int result, xmlNode * new_obj) |
| 188 | { |
| 189 | gboolean needed = FALSE; |
| 190 | |
| 191 | g_hash_table_foreach(client_list, need_post_notify, &needed); |
| 192 | if (needed == FALSE) { |
| 193 | return; |
| 194 | } |
| 195 | |
| 196 | do_cib_notify(options, op, update, result, new_obj, T_CIB_UPDATE_CONFIRM); |
| 197 | } |
| 198 | |
| 199 | void |
| 200 | cib_diff_notify(int options, const char *client, const char *call_id, const char *op, |
no test coverage detected