| 98 | } |
| 99 | |
| 100 | static void notify_add_tree(const char *path) |
| 101 | { |
| 102 | TempAllocator512 ta; |
| 103 | StringStream ss(ta); |
| 104 | ss << "{\"type\":\"add_tree\",\"path\":\"" << path << "\"}"; |
| 105 | console_server()->broadcast(string_stream::c_str(ss)); |
| 106 | } |
| 107 | |
| 108 | static void notify_remove_tree(const char *path) |
| 109 | { |
no test coverage detected