| 440 | } |
| 441 | |
| 442 | int Binlog_relay_IO_delegate::before_request_transmit(THD *thd, |
| 443 | Master_info *mi, |
| 444 | ushort flags) |
| 445 | { |
| 446 | Binlog_relay_IO_param param; |
| 447 | init_param(¶m, mi); |
| 448 | |
| 449 | int ret= 0; |
| 450 | FOREACH_OBSERVER(ret, before_request_transmit, thd, (¶m, (uint32)flags)); |
| 451 | return ret; |
| 452 | } |
| 453 | |
| 454 | int Binlog_relay_IO_delegate::after_read_event(THD *thd, Master_info *mi, |
| 455 | const char *packet, ulong len, |
nothing calls this directly
no outgoing calls
no test coverage detected