| 142 | |
| 143 | template <typename Input> |
| 144 | void send(thread_db* tdbb, Tag tag, const Input* in) |
| 145 | { |
| 146 | static_assert(sizeof(*in) <= sizeof(std::declval<Header>().buffer), "Buffer size too small"); |
| 147 | internalSendAndReceive(tdbb, tag, in, sizeof(*in), nullptr, 0); |
| 148 | } |
| 149 | |
| 150 | private: |
| 151 | void internalSendAndReceive(thread_db* tdbb, Tag tag, const void* in, unsigned inSize, void* out, unsigned outSize); |
no outgoing calls
no test coverage detected