| 1143 | |
| 1144 | #if SUPPORT_HEARTBEAT |
| 1145 | void |
| 1146 | cib_ha_peer_callback(HA_Message * msg, void *private_data) |
| 1147 | { |
| 1148 | xmlNode *xml = convert_ha_message(NULL, msg, __FUNCTION__); |
| 1149 | |
| 1150 | cib_peer_callback(xml, private_data); |
| 1151 | free_xml(xml); |
| 1152 | } |
| 1153 | #endif |
| 1154 | |
| 1155 | void |
nothing calls this directly
no test coverage detected