| 90 | } |
| 91 | |
| 92 | static void notify_remove_file(const char *path) |
| 93 | { |
| 94 | TempAllocator512 ta; |
| 95 | StringStream ss(ta); |
| 96 | ss << "{\"type\":\"remove_file\",\"path\":\"" << path << "\"}"; |
| 97 | console_server()->broadcast(string_stream::c_str(ss)); |
| 98 | } |
| 99 | |
| 100 | static void notify_add_tree(const char *path) |
| 101 | { |
no test coverage detected