Lines Matching refs:whdr
126 struct rxrpc_wire_header whdr; in rxrpc_extract_header() local
129 if (skb_copy_bits(skb, 0, &whdr, sizeof(whdr)) < 0) in rxrpc_extract_header()
133 sp->hdr.epoch = ntohl(whdr.epoch); in rxrpc_extract_header()
134 sp->hdr.cid = ntohl(whdr.cid); in rxrpc_extract_header()
135 sp->hdr.callNumber = ntohl(whdr.callNumber); in rxrpc_extract_header()
136 sp->hdr.seq = ntohl(whdr.seq); in rxrpc_extract_header()
137 sp->hdr.serial = ntohl(whdr.serial); in rxrpc_extract_header()
138 sp->hdr.flags = whdr.flags; in rxrpc_extract_header()
139 sp->hdr.type = whdr.type; in rxrpc_extract_header()
140 sp->hdr.userStatus = whdr.userStatus; in rxrpc_extract_header()
141 sp->hdr.securityIndex = whdr.securityIndex; in rxrpc_extract_header()
142 sp->hdr._rsvd = ntohs(whdr._rsvd); in rxrpc_extract_header()
143 sp->hdr.serviceId = ntohs(whdr.serviceId); in rxrpc_extract_header()