Lines Matching refs:Head
432 LIST_ENTRY *Head;
449 Head = &mTcpRunQue;
452 Head = &mTcpListenQue;
458 NET_LIST_FOR_EACH (Entry, Head) {
469 InsertHeadList (Head, &Tcb->List);
679 Translate the information from the head of the received TCP
685 @return Pointer to the TCP_SEG that contains the translated TCP head information.
695 TCP_HEAD *Head;
698 Head
699 ASSERT (Head != NULL);
701 Nbuf->Tcp = Head;
703 Seg->Seq = NTOHL (Head->Seq);
704 Seg->Ack = NTOHL (Head->Ack);
705 Seg->End = Seg->Seq + (Nbuf->TotalSize - (Head->HeadLen << 2));
707 Seg->Urg = NTOHS (Head->Urg);
708 Seg->Wnd = (NTOHS (Head->Wnd) << Tcb->SndWndScale);
709 Seg->Flag = Head->Flag;
718 Seg->Wnd = NTOHS (Head->Wnd);