Home | History | Annotate | Download | only in Tcp4Dxe

Lines Matching refs:AccessPoint

80   EFI_TCP4_ACCESS_POINT *AccessPoint;

97 AccessPoint = &(ConfigData->AccessPoint);
103 AccessPoint->UseDefaultAddress = Tcb->UseDefaultAddr;
105 IP4_COPY_ADDRESS (&AccessPoint->StationAddress, &Tcb->LocalEnd.Ip);
106 IP4_COPY_ADDRESS (&AccessPoint->SubnetMask, &Tcb->SubnetMask);
107 AccessPoint->StationPort = NTOHS (Tcb->LocalEnd.Port);
109 IP4_COPY_ADDRESS (&AccessPoint->RemoteAddress, &Tcb->RemoteEnd.Ip);
110 AccessPoint->RemotePort = NTOHS (Tcb->RemoteEnd.Port);
111 AccessPoint->ActiveFlag = (BOOLEAN) (Tcb->State != TCP_LISTEN);
390 IpCfgData.UseDefaultAddress = CfgData->AccessPoint.UseDefaultAddress;
391 IpCfgData.StationAddress = CfgData->AccessPoint.StationAddress;
392 IpCfgData.SubnetMask = CfgData->AccessPoint.SubnetMask;
406 if (CfgData->AccessPoint.UseDefaultAddress) {
407 CfgData->AccessPoint.StationAddress = IpCfgData.StationAddress;
408 CfgData->AccessPoint.SubnetMask = IpCfgData.SubnetMask;
414 Status = Tcp4Bind (&(CfgData->AccessPoint));
458 Tcb->UseDefaultAddr = CfgData->AccessPoint.UseDefaultAddress;
460 CopyMem (&Tcb->LocalEnd.Ip, &CfgData->AccessPoint.StationAddress, sizeof (IP4_ADDR));
461 Tcb->LocalEnd.Port = HTONS (CfgData->AccessPoint.StationPort);
462 IP4_COPY_ADDRESS (&Tcb->SubnetMask, &CfgData->AccessPoint.SubnetMask);
464 if (CfgData->AccessPoint.ActiveFlag) {
465 CopyMem (&Tcb->RemoteEnd.Ip, &CfgData->AccessPoint.RemoteAddress, sizeof (IP4_ADDR));
466 Tcb->RemoteEnd.Port = HTONS (CfgData->AccessPoint.RemotePort);
586 if (!CfgData->AccessPoint.ActiveFlag) {