• Home
  • Raw
  • Download

Lines Matching refs:whdr

644 	struct rxrpc_wire_header whdr;  in rxkad_issue_challenge()  local
670 whdr.epoch = htonl(conn->proto.epoch); in rxkad_issue_challenge()
671 whdr.cid = htonl(conn->proto.cid); in rxkad_issue_challenge()
672 whdr.callNumber = 0; in rxkad_issue_challenge()
673 whdr.seq = 0; in rxkad_issue_challenge()
674 whdr.type = RXRPC_PACKET_TYPE_CHALLENGE; in rxkad_issue_challenge()
675 whdr.flags = conn->out_clientflag; in rxkad_issue_challenge()
676 whdr.userStatus = 0; in rxkad_issue_challenge()
677 whdr.securityIndex = conn->security_ix; in rxkad_issue_challenge()
678 whdr._rsvd = 0; in rxkad_issue_challenge()
679 whdr.serviceId = htons(conn->service_id); in rxkad_issue_challenge()
681 iov[0].iov_base = &whdr; in rxkad_issue_challenge()
682 iov[0].iov_len = sizeof(whdr); in rxkad_issue_challenge()
689 whdr.serial = htonl(serial); in rxkad_issue_challenge()
700 trace_rxrpc_tx_packet(conn->debug_id, &whdr, in rxkad_issue_challenge()
714 struct rxrpc_wire_header whdr; in rxkad_send_response() local
729 memset(&whdr, 0, sizeof(whdr)); in rxkad_send_response()
730 whdr.epoch = htonl(hdr->epoch); in rxkad_send_response()
731 whdr.cid = htonl(hdr->cid); in rxkad_send_response()
732 whdr.type = RXRPC_PACKET_TYPE_RESPONSE; in rxkad_send_response()
733 whdr.flags = conn->out_clientflag; in rxkad_send_response()
734 whdr.securityIndex = hdr->securityIndex; in rxkad_send_response()
735 whdr.serviceId = htons(hdr->serviceId); in rxkad_send_response()
737 iov[0].iov_base = &whdr; in rxkad_send_response()
738 iov[0].iov_len = sizeof(whdr); in rxkad_send_response()
747 whdr.serial = htonl(serial); in rxkad_send_response()