| 801 | } |
| 802 | |
| 803 | static int |
| 804 | synclient_txn_main_handler(TSCont contp, TSEvent event, void *data) |
| 805 | { |
| 806 | ClientTxn *txn = static_cast<ClientTxn *>(TSContDataGet(contp)); |
| 807 | TSAssert(txn->magic == MAGIC_ALIVE); |
| 808 | |
| 809 | TxnHandler handler = txn->current_handler; |
| 810 | return (*handler)(contp, event, data); |
| 811 | } |
| 812 | |
| 813 | ////////////////////////////////////////////////////////////////////////////// |
| 814 | // SOCKET SERVER |
nothing calls this directly
no test coverage detected