Home | History | Annotate | Download | only in openssh

Lines Matching refs:child_state

139 } child_state;
1747 packet_set_protocol_flags(child_state.ssh1protoflags);
1748 packet_set_encryption_key(child_state.ssh1key,
1749 child_state.ssh1keylen, child_state.ssh1cipher);
1750 xfree(child_state.ssh1key);
1754 packet_set_keycontext(MODE_OUT, child_state.keyout);
1755 xfree(child_state.keyout);
1756 packet_set_keycontext(MODE_IN, child_state.keyin);
1757 xfree(child_state.keyin);
1760 packet_set_iv(MODE_OUT, child_state.ivout);
1761 xfree(child_state.ivout);
1762 packet_set_iv(MODE_IN, child_state.ivin);
1763 xfree(child_state.ivin);
1766 memcpy(&incoming_stream, &child_state.incoming,
1768 memcpy(&outgoing_stream, &child_state.outgoing,
1778 buffer_append(packet_get_input(), child_state.input, child_state.ilen);
1779 memset(child_state.input, 0, child_state.ilen);
1780 xfree(child_state.input);
1783 buffer_append(packet_get_output(), child_state.output,
1784 child_state.olen);
1785 memset(child_state.output, 0, child_state.olen);
1786 xfree(child_state.output);
1790 roam_set_bytes(child_state.sent_bytes, child_state.recv_bytes);
1850 child_state.ssh1protoflags = buffer_get_int(&m);
1851 child_state.ssh1cipher = buffer_get_int(&m);
1852 child_state.ssh1key = buffer_get_string(&m,
1853 &child_state.ssh1keylen);
1854 child_state.ivout = buffer_get_string(&m,
1855 &child_state.ivoutlen);
1856 child_state.ivin = buffer_get_string(&m, &child_state.ivinlen);
1886 child_state.keyout = buffer_get_string(&m, &child_state.keyoutlen);
1887 child_state.keyin = buffer_get_string(&m, &child_state.keyinlen);
1892 if (plen != sizeof(child_state.outgoing))
1894 memcpy(&child_state.outgoing, p, sizeof(child_state.outgoing));
1898 if (plen != sizeof(child_state.incoming))
1900 memcpy(&child_state.incoming, p, sizeof(child_state.incoming));
1905 child_state.input = buffer_get_string(&m, &child_state.ilen);
1906 child_state.output = buffer_get_string(&m, &child_state.olen);
1910 child_state.sent_bytes = buffer_get_int64(&m);
1911 child_state.recv_bytes = buffer_get_int64(&m);