Lines Matching refs:pRemoteAddress

412   struct sockaddr_in * pRemoteAddress;  in EslIp4Receive()  local
431 pRemoteAddress = (struct sockaddr_in *)pAddress; in EslIp4Receive()
432 CopyMem ( &pRemoteAddress->sin_addr, in EslIp4Receive()
434 sizeof ( pRemoteAddress->sin_addr )); in EslIp4Receive()
512 struct sockaddr_in * pRemoteAddress; in EslIp4RemoteAddressGet() local
521 pRemoteAddress = (struct sockaddr_in *)pAddress; in EslIp4RemoteAddressGet()
522 pRemoteAddress->sin_family = AF_INET; in EslIp4RemoteAddressGet()
523 CopyMem ( &pRemoteAddress->sin_addr, in EslIp4RemoteAddressGet()
525 sizeof ( pRemoteAddress->sin_addr )); in EslIp4RemoteAddressGet()
556 CONST struct sockaddr_in * pRemoteAddress; in EslIp4RemoteAddressSet() local
565 pRemoteAddress = (struct sockaddr_in *)pSockAddr; in EslIp4RemoteAddressSet()
566 pIp4->DestinationAddress.Addr[0] = (UINT8)( pRemoteAddress->sin_addr.s_addr ); in EslIp4RemoteAddressSet()
567 pIp4->DestinationAddress.Addr[1] = (UINT8)( pRemoteAddress->sin_addr.s_addr >> 8 ); in EslIp4RemoteAddressSet()
568 pIp4->DestinationAddress.Addr[2] = (UINT8)( pRemoteAddress->sin_addr.s_addr >> 16 ); in EslIp4RemoteAddressSet()
569 pIp4->DestinationAddress.Addr[3] = (UINT8)( pRemoteAddress->sin_addr.s_addr >> 24 ); in EslIp4RemoteAddressSet()
913 const struct sockaddr_in * pRemoteAddress; in EslIp4TxBuffer() local
979 pRemoteAddress = (const struct sockaddr_in *)pAddress; in EslIp4TxBuffer()
984 pTxData->TxData.DestinationAddress.Addr[0] = (UINT8)pRemoteAddress->sin_addr.s_addr; in EslIp4TxBuffer()
985 … pTxData->TxData.DestinationAddress.Addr[1] = (UINT8)( pRemoteAddress->sin_addr.s_addr >> 8 ); in EslIp4TxBuffer()
986 … pTxData->TxData.DestinationAddress.Addr[2] = (UINT8)( pRemoteAddress->sin_addr.s_addr >> 16 ); in EslIp4TxBuffer()
987 … pTxData->TxData.DestinationAddress.Addr[3] = (UINT8)( pRemoteAddress->sin_addr.s_addr >> 24 ); in EslIp4TxBuffer()