Lines Matching refs:whdr
732 struct rxrpc_wire_header whdr; in rxkad_issue_challenge() local
754 whdr.epoch = htonl(conn->proto.epoch); in rxkad_issue_challenge()
755 whdr.cid = htonl(conn->proto.cid); in rxkad_issue_challenge()
756 whdr.callNumber = 0; in rxkad_issue_challenge()
757 whdr.seq = 0; in rxkad_issue_challenge()
758 whdr.type = RXRPC_PACKET_TYPE_CHALLENGE; in rxkad_issue_challenge()
759 whdr.flags = conn->out_clientflag; in rxkad_issue_challenge()
760 whdr.userStatus = 0; in rxkad_issue_challenge()
761 whdr.securityIndex = conn->security_ix; in rxkad_issue_challenge()
762 whdr._rsvd = 0; in rxkad_issue_challenge()
763 whdr.serviceId = htons(conn->service_id); in rxkad_issue_challenge()
765 iov[0].iov_base = &whdr; in rxkad_issue_challenge()
766 iov[0].iov_len = sizeof(whdr); in rxkad_issue_challenge()
773 whdr.serial = htonl(serial); in rxkad_issue_challenge()
784 trace_rxrpc_tx_packet(conn->debug_id, &whdr, in rxkad_issue_challenge()
798 struct rxrpc_wire_header whdr; in rxkad_send_response() local
813 memset(&whdr, 0, sizeof(whdr)); in rxkad_send_response()
814 whdr.epoch = htonl(hdr->epoch); in rxkad_send_response()
815 whdr.cid = htonl(hdr->cid); in rxkad_send_response()
816 whdr.type = RXRPC_PACKET_TYPE_RESPONSE; in rxkad_send_response()
817 whdr.flags = conn->out_clientflag; in rxkad_send_response()
818 whdr.securityIndex = hdr->securityIndex; in rxkad_send_response()
819 whdr.serviceId = htons(hdr->serviceId); in rxkad_send_response()
821 iov[0].iov_base = &whdr; in rxkad_send_response()
822 iov[0].iov_len = sizeof(whdr); in rxkad_send_response()
831 whdr.serial = htonl(serial); in rxkad_send_response()