Lines Matching refs:whdr
132 struct rxrpc_wire_header whdr; in rxrpc_extract_header() local
135 if (skb_copy_bits(skb, 0, &whdr, sizeof(whdr)) < 0) in rxrpc_extract_header()
139 sp->hdr.epoch = ntohl(whdr.epoch); in rxrpc_extract_header()
140 sp->hdr.cid = ntohl(whdr.cid); in rxrpc_extract_header()
141 sp->hdr.callNumber = ntohl(whdr.callNumber); in rxrpc_extract_header()
142 sp->hdr.seq = ntohl(whdr.seq); in rxrpc_extract_header()
143 sp->hdr.serial = ntohl(whdr.serial); in rxrpc_extract_header()
144 sp->hdr.flags = whdr.flags; in rxrpc_extract_header()
145 sp->hdr.type = whdr.type; in rxrpc_extract_header()
146 sp->hdr.userStatus = whdr.userStatus; in rxrpc_extract_header()
147 sp->hdr.securityIndex = whdr.securityIndex; in rxrpc_extract_header()
148 sp->hdr._rsvd = ntohs(whdr._rsvd); in rxrpc_extract_header()
149 sp->hdr.serviceId = ntohs(whdr.serviceId); in rxrpc_extract_header()