Home | History | Annotate | Download | only in openssh

Lines Matching refs:seqnr

91 	u_int32_t seqnr;
267 active_state->p_read.seqnr,
394 packet_get_state(int mode, u_int32_t *seqnr, u_int64_t *blocks,
401 if (seqnr)
402 *seqnr = state->seqnr;
412 packet_set_state(int mode, u_int32_t seqnr, u_int64_t blocks, u_int32_t packets,
419 state->seqnr = seqnr;
928 /* compute MAC over seqnr and packet(length fields, payload, padding) */
930 macbuf = mac_compute(mac, active_state->p_send.seqnr,
933 DBG(debug("done calc MAC out #%d", active_state->p_send.seqnr));
949 if (++active_state->p_send.seqnr == 0)
950 logit("outgoing seqnr wraps around");
1308 * compute MAC over seqnr and packet,
1312 macbuf = mac_compute(mac, active_state->p_read.seqnr,
1325 DBG(debug("MAC #%d ok", active_state->p_read.seqnr));
1330 *seqnr_p = active_state->p_read.seqnr;
1331 if (++active_state->p_read.seqnr == 0)
1332 logit("incoming seqnr wraps around");
1387 u_int reason, seqnr;
1419 seqnr = packet_get_int();
1421 seqnr);