HomeSort by relevance Sort by last modified time
    Searched defs:RemotePort (Results 1 - 25 of 33) sorted by null

1 2

  /device/linaro/bootloader/edk2/AppPkg/Applications/Sockets/RawIp4Rx/
RawIp4Rx.c 37 struct sockaddr_in RemotePort;
102 RemotePortLength = sizeof ( RemotePort );
107 (struct sockaddr *)&RemotePort,
118 (UINT8)SIN_ADDR ( RemotePort ),
119 (UINT8)( SIN_ADDR ( RemotePort ) >> 8 ),
120 (UINT8)( SIN_ADDR ( RemotePort ) >> 16 ),
121 (UINT8)( SIN_ADDR ( RemotePort ) >> 24 ),
122 SIN_PORT ( RemotePort ),
  /device/linaro/bootloader/edk2/AppPkg/Applications/Sockets/RawIp4Tx/
RawIp4Tx.c 38 struct sockaddr_in RemotePort;
99 memset ( &RemotePort, 0, sizeof ( RemotePort ));
100 SIN_LEN ( RemotePort ) = sizeof ( RemotePort );
101 SIN_FAMILY ( RemotePort ) = AF_INET;
102 SIN_ADDR ( RemotePort ) = ( RemoteAddress[3] << 24 )
106 SIN_PORT ( RemotePort ) = 0;
123 (struct sockaddr *)&RemotePort,
124 sizeof ( RemotePort ));
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Sockets/OobTx/
OobTx.c 42 struct sockaddr_in RemotePort;
106 memset ( &RemotePort, 0, sizeof ( RemotePort ));
107 SIN_LEN ( RemotePort ) = sizeof ( RemotePort );
108 SIN_FAMILY ( RemotePort ) = AF_INET;
109 SIN_ADDR ( RemotePort ) = ( RemoteAddress[3] << 24 )
113 SIN_PORT ( RemotePort ) = htons ( PortNumber );
118 RetVal = connect ( s, (struct sockaddr *)&RemotePort, sizeof ( RemotePort ));
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Sockets/OobRx/
OobRx.c 40 struct sockaddr_in RemotePort;
94 RemotePortLength = sizeof ( RemotePort );
96 (struct sockaddr *)&RemotePort,
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/IScsiDxe/
IScsiTcp4Io.h 27 UINT16 RemotePort;
  /device/linaro/bootloader/edk2/MdeModulePkg/Include/Library/
TcpIoLib.h 41 UINT16 RemotePort;
48 UINT16 RemotePort;
UdpIoLib.h 44 UINT16 RemotePort;
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Tcp4Dxe/
Tcp4Misc.c 289 @param RemotePort The remote port number.
301 IN TCP_PORTNO RemotePort,
314 Remote.Port = RemotePort;
899 TCP_PORTNO RemotePort;
906 RemotePort = NTOHS (Tcb->RemoteEnd.Port);
913 RemotePort,
  /device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
Udp6.h 63 UINT16 RemotePort;
188 UINT16 RemotePort;
Udp4.h 49 UINT16 RemotePort;
97 UINT16 RemotePort;
Dhcp4.h 388 UINT16 RemotePort;
    [all...]
Tcp4.h 47 UINT16 RemotePort;
66 UINT16 RemotePort;
Tcp6.h 69 UINT16 RemotePort;
121 UINT16 RemotePort;
545 Tcp6ConfigData->AccessPoint.RemotePort is zero when
    [all...]
IpSecConfig.h 122 /// value is a wildcard that matches any value in RemotePort field.
124 UINT16 RemotePort;
126 /// A designed port range size. The start port is RemotePort, and
350 /// Bit 4: EFI_IPSEC_SPD_SELECTOR.RemotePort
  /device/linaro/bootloader/edk2/NetworkPkg/HttpDxe/
HttpImpl.c 240 UINT16 RemotePort;
258 RemotePort = 0;
388 Status = HttpUrlGetPort (Url, UrlParser, &RemotePort);
391 RemotePort = HTTPS_DEFAULT_PORT;
393 RemotePort = HTTP_DEFAULT_PORT;
410 if ((HttpInstance->RemotePort == RemotePort) &&
466 HttpInstance->RemotePort = 0;
504 // Save the RemotePort and RemoteHost.
507 HttpInstance->RemotePort = RemotePort;
    [all...]
HttpProto.h 117 UINT16 RemotePort;
  /device/linaro/bootloader/edk2/NetworkPkg/TcpDxe/
TcpMisc.c 359 @param[in] RemotePort The remote port number.
372 IN TCP_PORTNO RemotePort,
384 Remote.Port = RemotePort;
992 TCP_PORTNO RemotePort;
999 RemotePort = NTOHS (Tcb->RemoteEnd.Port);
1007 RemotePort,
1022 RemotePort,
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Efi/Protocol/Udp4/
Udp4.h 40 UINT16 RemotePort;
98 UINT16 RemotePort;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Efi/Protocol/Dhcp4/
Dhcp4.h 145 UINT16 RemotePort;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Efi/Protocol/Tcp4/
Tcp4.h 49 UINT16 RemotePort;
64 UINT16 RemotePort;
  /external/syslinux/efi32/include/efi/
efiudp.h 40 UINT16 RemotePort;
170 UINT16 RemotePort;
efitcp.h 30 UINT16 RemotePort;
237 UINT16 RemotePort;
  /external/syslinux/efi64/include/efi/
efiudp.h 40 UINT16 RemotePort;
170 UINT16 RemotePort;
  /external/syslinux/gnu-efi/gnu-efi-3.0/inc/
efiudp.h 40 UINT16 RemotePort;
170 UINT16 RemotePort;
  /device/linaro/bootloader/edk2/NetworkPkg/IpSecDxe/Ikev2/
Ikev2.h 208 UINT16 RemotePort;

Completed in 1147 milliseconds

1 2