Update TellusAgent.c

This commit is contained in:
R3ABM Artem 2023-01-16 13:20:48 +00:00
parent b02587fd94
commit f277a8aa3c

View file

@ -496,7 +496,18 @@ int main(int argc, const char* argv[])
// Handle packet from the repeater
if (CHECK(event, proxyHandles[0]))
for (selection = 0; selection < PROXY_PORT_COUNT; selection ++)
{
int handle = proxyHandles[selection];
if (CHECK(event, handle))
{
socklen_t size = sizeof(struct sockaddr_in);
uint8_t* buffer = (uint8_t*)outgoingBuffer->data;
struct sockaddr_in* address = repeaterSocketAddresses + selection;
size_t length = recvfrom(handle, buffer, BUFFER_SIZE, 0, (struct sockaddr*)address, &size);
if ((selection == 0) &&
(memcmp(buffer, "HMTP", 4) != 0))
{
struct msghdr message;
struct iovec vectors[2];
@ -521,16 +532,6 @@ int main(int argc, const char* argv[])
sendmsg(uplinkHandle, &message, 0);
}
for (selection = 0; selection < PROXY_PORT_COUNT; selection ++)
{
int handle = proxyHandles[selection];
if (CHECK(event, handle))
{
socklen_t size = sizeof(struct sockaddr_in);
uint8_t* buffer = (uint8_t*)outgoingBuffer->data;
struct sockaddr_in* address = repeaterSocketAddresses + selection;
size_t length = recvfrom(handle, buffer, BUFFER_SIZE, 0, (struct sockaddr*)address, &size);
outgoingBuffer->type = htole16(REWIND_CLASS_HYTERA_DATA + selection);
outgoingBuffer->length = htole16(length);