| 2273 | |
| 2274 | ZMQ_DEPRECATED("from 4.3.1, use proxy taking socket_t objects") |
| 2275 | inline void proxy(void *frontend, void *backend, void *capture) |
| 2276 | { |
| 2277 | int rc = zmq_proxy(frontend, backend, capture); |
| 2278 | if (rc != 0) |
| 2279 | throw error_t(); |
| 2280 | } |
| 2281 | |
| 2282 | inline void |
| 2283 | proxy(socket_ref frontend, socket_ref backend, socket_ref capture = socket_ref()) |
nothing calls this directly
no test coverage detected