Searched refs:remoteAddress (Results 1 – 2 of 2) sorted by relevance
1014 INT nx_bsd_connect(INT sockID, struct nx_bsd_sockaddr *remoteAddress, INT addressLength);1015 INT nx_bsd_getpeername(INT sockID, struct nx_bsd_sockaddr *remoteAddress, INT *addressLength);
1306 INT nx_bsd_connect(INT sockID, struct nx_bsd_sockaddr *remoteAddress, INT addressLength) in nx_bsd_connect() argument1378 if (remoteAddress == NX_NULL ) in nx_bsd_connect()1417 if((remoteAddress -> sa_family != bsd_socket_ptr -> nx_bsd_socket_family) || in nx_bsd_connect()1418 …((remoteAddress -> sa_family == AF_INET) && (addressLength != sizeof(struct nx_bsd_sockaddr_in))) … in nx_bsd_connect()1419 …((remoteAddress -> sa_family == AF_INET6) && (addressLength != sizeof(struct nx_bsd_sockaddr_in6))… in nx_bsd_connect()1436 if(remoteAddress -> sa_family == AF_INET) in nx_bsd_connect()1446 …ket_peer_ip.nxd_ip_address.v4 = htonl(((struct nx_bsd_sockaddr_in *) remoteAddress ) -> sin_addr.… in nx_bsd_connect()1447 …tr -> nx_bsd_socket_peer_port = htons(((struct nx_bsd_sockaddr_in *) remoteAddress ) -> sin_port); in nx_bsd_connect()1453 if(remoteAddress -> sa_family == AF_INET6) in nx_bsd_connect()1461 …et_peer_ip.nxd_ip_address.v6[0] = htonl(((struct nx_bsd_sockaddr_in6*)remoteAddress) -> sin6_addr.… in nx_bsd_connect()[all …]