• Home
  • Raw
  • Download

Lines Matching refs:child_state

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