This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

getaddrinfo returns error 12 with new modem firmware 1.1.0 worked with 1.0.1

Hello :)

After upgrading the modem firmware of the nRF9160 to version 1.1.0 (mfw_nrf9160_1.1.0.zip) the call to getaddrinfo returns error 12.

If I downgrade to version 1.0.1 everything works as expected and the ip address is resolved.

    int err;
	struct addrinfo *result;
	struct addrinfo hints = {
		.ai_family = AF_INET,
		.ai_socktype = socktype
	};
	char ipv4_addr[NET_IPV4_ADDR_LEN];

	err = getaddrinfo(name, NULL, &hints, &result);
	if (err) {
		LOG_ERR("ERROR: getaddrinfo failed %d %s", err, strerror(err));
		return err;
	}

--> app: ERROR: getaddrinfo failed 12 Not enough space

Parents Reply
  • Hello Didrik,

    I have now tested it with asset_tracker. And there it works with the newModem- FW.

    I have further analyzed the problem and found the following: The problem seems to be that in my code I call getaddrinfo once before LTE is connected to the network. All subsequent calls to getaddrinfo (even when connected to LTE) where then unsuccessful - With the older modem-fw this was not a problem.

    If I wait in the code to make the first call to getaddrinfo until LTE is connected (+CEREG=1), everything works.

    Regards,
    Alex

Children
No Data
Related