Lines Matching refs:whdr
627 struct rxrpc_wire_header whdr; in rxkad_issue_challenge() local
649 whdr.epoch = htonl(conn->proto.epoch); in rxkad_issue_challenge()
650 whdr.cid = htonl(conn->proto.cid); in rxkad_issue_challenge()
651 whdr.callNumber = 0; in rxkad_issue_challenge()
652 whdr.seq = 0; in rxkad_issue_challenge()
653 whdr.type = RXRPC_PACKET_TYPE_CHALLENGE; in rxkad_issue_challenge()
654 whdr.flags = conn->out_clientflag; in rxkad_issue_challenge()
655 whdr.userStatus = 0; in rxkad_issue_challenge()
656 whdr.securityIndex = conn->security_ix; in rxkad_issue_challenge()
657 whdr._rsvd = 0; in rxkad_issue_challenge()
658 whdr.serviceId = htons(conn->service_id); in rxkad_issue_challenge()
660 iov[0].iov_base = &whdr; in rxkad_issue_challenge()
661 iov[0].iov_len = sizeof(whdr); in rxkad_issue_challenge()
668 whdr.serial = htonl(serial); in rxkad_issue_challenge()
678 trace_rxrpc_tx_packet(conn->debug_id, &whdr, in rxkad_issue_challenge()
692 struct rxrpc_wire_header whdr; in rxkad_send_response() local
707 memset(&whdr, 0, sizeof(whdr)); in rxkad_send_response()
708 whdr.epoch = htonl(hdr->epoch); in rxkad_send_response()
709 whdr.cid = htonl(hdr->cid); in rxkad_send_response()
710 whdr.type = RXRPC_PACKET_TYPE_RESPONSE; in rxkad_send_response()
711 whdr.flags = conn->out_clientflag; in rxkad_send_response()
712 whdr.securityIndex = hdr->securityIndex; in rxkad_send_response()
713 whdr.serviceId = htons(hdr->serviceId); in rxkad_send_response()
715 iov[0].iov_base = &whdr; in rxkad_send_response()
716 iov[0].iov_len = sizeof(whdr); in rxkad_send_response()
725 whdr.serial = htonl(serial); in rxkad_send_response()