Home
last modified time | relevance | path

Searched refs:compression_out_stream (Results 1 – 1 of 1) sorted by relevance

/openbsd/src/usr.bin/ssh/
Dpacket.c138 z_stream compression_out_stream; member
680 z_streamp stream = &state->compression_out_stream; in ssh_packet_close_internal()
768 deflateEnd(&ssh->state->compression_out_stream); in start_compression_out()
769 switch (deflateInit(&ssh->state->compression_out_stream, level)) { in start_compression_out()
813 if ((ssh->state->compression_out_stream.next_in = in compress_buffer()
816 ssh->state->compression_out_stream.avail_in = sshbuf_len(in); in compress_buffer()
821 ssh->state->compression_out_stream.next_out = buf; in compress_buffer()
822 ssh->state->compression_out_stream.avail_out = sizeof(buf); in compress_buffer()
825 status = deflate(&ssh->state->compression_out_stream, in compress_buffer()
833 ssh->state->compression_out_stream.avail_out)) != 0) in compress_buffer()
[all …]