| 255 | } |
| 256 | |
| 257 | int SendPilotTrackerPacket(void *packet) { |
| 258 | udp_packet_header *p_pack = (udp_packet_header *)packet; |
| 259 | |
| 260 | network_address send_address; |
| 261 | memset(&send_address, 0, sizeof(network_address)); |
| 262 | SOCKADDR_IN *inaddr = (SOCKADDR_IN *)&ptrackaddr; |
| 263 | memcpy(send_address.address, &inaddr->sin_addr, 4); |
| 264 | send_address.port = htons(inaddr->sin_port); |
| 265 | send_address.connection_type = NP_TCP; |
| 266 | return DLLnw_SendWithID(PXO_NETID_USER_TRACKER, (uint8_t *)p_pack, INTEL_SHORT(p_pack->len), &send_address); |
| 267 | } |
no outgoing calls
no test coverage detected