Lines Matching defs:server_output
37 struct ostream *client_output, *server_output;
68 o_stream_destroy(&proxy->server_output);
180 if (o_stream_get_buffer_used_size(proxy->server_output) >
190 o_stream_nsend(proxy->server_output, buf, ret);
196 static int server_output(struct rawlog_proxy *proxy)
198 if (o_stream_flush(proxy->server_output) < 0) {
204 o_stream_get_buffer_used_size(proxy->server_output) <
280 proxy->server_output = o_stream_create_fd(server_fd, (size_t)-1);
281 o_stream_set_no_error_handling(proxy->server_output, TRUE);
282 o_stream_set_flush_callback(proxy->server_output, server_output, proxy);