True if this protocol is supported at client-side.
| 165 | |
| 166 | // True if this protocol is supported at client-side. |
| 167 | bool support_client() const { |
| 168 | return serialize_request && pack_request && process_response; |
| 169 | } |
| 170 | // True if this protocol is supported at server-side. |
| 171 | bool support_server() const { return process_request; } |
| 172 | }; |
no outgoing calls
no test coverage detected