Home | History | Annotate | Download | only in OobTx

Lines Matching defs:RemotePort

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 ));