Home | History | Annotate | Download | only in TcpDxe

Lines Matching refs:Tcb

74   @param[in]  Tcb Pointer to the TCP_CB of this TCP instance.

81 IN TCP_CB *Tcb
87 ASSERT ((Tcb != NULL) && (Tcb->Sk != NULL));
89 BufSize = GET_RCV_BUFFSIZE (Tcb->Sk);
103 @param[in] Tcb Pointer to the TCP_CB of this TCP instance.
111 IN TCP_CB *Tcb,
118 ASSERT ((Tcb != NULL) && (Nbuf != NULL) && (Nbuf->Tcp == NULL));
127 if (!TCP_FLG_ON (Tcb->CtrlFlag, TCP_CTRL_NO_TS) &&
129 TCP_FLG_ON (Tcb->CtrlFlag, TCP_CTRL_RCVD_TS))
151 if (!TCP_FLG_ON (Tcb->CtrlFlag, TCP_CTRL_NO_WS) &&
153 TCP_FLG_ON (Tcb->CtrlFlag, TCP_CTRL_RCVD_WS))
165 TcpPutUint32 (Data, TCP_OPTION_WS_FAST | TcpComputeScale (Tcb));
175 TcpPutUint32 (Data, TCP_OPTION_MSS_FAST | Tcb->RcvMss);
183 @param[in] Tcb Pointer to the TCP_CB of this TCP instance.
191 IN TCP_CB *Tcb,
198 ASSERT ((Tcb != NULL) && (Nbuf != NULL) && (Nbuf->Tcp == NULL));
204 if (TCP_FLG_ON (Tcb->CtrlFlag, TCP_CTRL_SND_TS) &&
219 TcpPutUint32 (Data + 8, Tcb->TsRecent);
349 @param[in] Tcb Pointer to the TCP_CB of this TCP instance.
358 IN TCP_CB *Tcb,
365 if (TCP_TIME_LT (TSVal, Tcb->TsRecent) &&
366 TCP_TIME_LT (Tcb->TsRecentAge + TCP_PAWS_24DAY, mTcpTick)