<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://devzone.nordicsemi.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Date-Time with IPv6</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/70874/date-time-with-ipv6</link><description>Hi, 
 OS: Windows 10 Editor: SEGGER Embedded Studio for ARM (Nordic Edition) V5.10d (64-bit) nrfjprog version: 10.12.1 JLinkARM.dll version: 6.88a nRF Connect SDK version: 1.4.2 nRF9160 modem firmware version: 1.2.3 
 I have enabled IPv6 in my firmware</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Wed, 27 Jan 2021 15:26:07 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/70874/date-time-with-ipv6" /><item><title>RE: Date-Time with IPv6</title><link>https://devzone.nordicsemi.com/thread/291569?ContentTypeID=1</link><pubDate>Wed, 27 Jan 2021 15:26:07 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:07e484fb-3a28-457e-af71-3cab622bb142</guid><dc:creator>Didrik Rokhaug</dc:creator><description>&lt;p&gt;Great, thanks!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Date-Time with IPv6</title><link>https://devzone.nordicsemi.com/thread/291048?ContentTypeID=1</link><pubDate>Mon, 25 Jan 2021 13:44:04 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:8617a0bc-32d7-43c5-b507-1f47be292add</guid><dc:creator>anicare-tero</dc:creator><description>&lt;p&gt;Okay, I will do that.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;EDIT:&amp;nbsp;&lt;/strong&gt;Done.&amp;nbsp;&lt;a href="https://github.com/nrfconnect/sdk-nrf/pull/3741"&gt;https://github.com/nrfconnect/sdk-nrf/pull/3741&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Date-Time with IPv6</title><link>https://devzone.nordicsemi.com/thread/291035?ContentTypeID=1</link><pubDate>Mon, 25 Jan 2021 13:05:28 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:66f5f6fa-26e3-4b17-aa77-f82c1cf2a1cf</guid><dc:creator>Didrik Rokhaug</dc:creator><description>&lt;p&gt;Yes, I mean a pull request.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Date-Time with IPv6</title><link>https://devzone.nordicsemi.com/thread/291023?ContentTypeID=1</link><pubDate>Mon, 25 Jan 2021 12:40:41 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:7ea2d4dd-550f-4754-ac8a-832d7bc35f9f</guid><dc:creator>anicare-tero</dc:creator><description>&lt;p&gt;Hi Didrik,&lt;/p&gt;
[quote userid="81181" url="~/f/nordic-q-a/70874/date-time-with-ipv6/291022#291022"]Would you be interested in opening a PR, so other users could benefit from this as well?[/quote]
&lt;p&gt;Do you mean pull request with PR, or what?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Date-Time with IPv6</title><link>https://devzone.nordicsemi.com/thread/291022?ContentTypeID=1</link><pubDate>Mon, 25 Jan 2021 12:38:46 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:d39d3349-87d7-4fdf-9535-cc3c5676fb8c</guid><dc:creator>Didrik Rokhaug</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;As you have already found, the date_time library is only requesting IPv4 addresses.&lt;/p&gt;
&lt;p&gt;Would you be interested in opening a PR, so other users could benefit from this as well?&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Didrik&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Date-Time with IPv6</title><link>https://devzone.nordicsemi.com/thread/291017?ContentTypeID=1</link><pubDate>Mon, 25 Jan 2021 12:11:33 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:b8a4acd2-5656-4fba-a5d4-f19aa0b54a94</guid><dc:creator>anicare-tero</dc:creator><description>&lt;p&gt;I did these changes to make it work temporarily:&lt;/p&gt;
&lt;p&gt;nrf/lib/date_time/Kconfig&lt;br /&gt;&lt;pre class="ui-code" data-mode="text"&gt;config DATE_TIME_IPV6
	bool &amp;quot;Use IPv6&amp;quot;
	default n&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;nrf/lib/date_time/date_time.c&lt;br /&gt;&lt;pre class="ui-code" data-mode="text"&gt;	hints.ai_family = AF_INET;    // REPLACED THIS WITH BELOW

	if (IS_ENABLED(CONFIG_DATE_TIME_IPV6)) {
		hints.ai_family = AF_INET6;
	} else {
		hints.ai_family = AF_INET;
	}&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;And then enabled that IPv6 for Date-Time library with&amp;nbsp;CONFIG_DATE_TIME_IPV6=y in application.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>