<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <link>https://hg.ecoscentric.com/ecos/</link>
    <language>en-us</language>

    <title>ecos: packages/net/ns/dns/current/src/dns.c history</title>
    <description>packages/net/ns/dns/current/src/dns.c revision history</description>
    <item>
    <title>* src/dns.c: Remove spurious mutex unlock in cyg_res_getaddrinfo() when</title>
    <link>https://hg.ecoscentric.com/ecos/log/16fb75d6ac70/packages/net/ns/dns/current/src/dns.c</link>
    <description><![CDATA[* src/dns.c: Remove spurious mutex unlock in cyg_res_getaddrinfo() when<br/>
  name lookup string is too long. Patch from Kelvin Lawson.]]></description>
    <author>&#106;&#108;&#100;</author>
    <pubDate>Wed, 29 Sep 2010 10:13:28 +0000</pubDate>
</item>
<item>
    <title>Update all copyright banners to reflect FSF ownership; fix and improve licence text.</title>
    <link>https://hg.ecoscentric.com/ecos/log/74dbf4c3f2e1/packages/net/ns/dns/current/src/dns.c</link>
    <description><![CDATA[Update all copyright banners to reflect FSF ownership; fix and improve licence text.]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Thu, 29 Jan 2009 17:47:46 +0000</pubDate>
</item>
<item>
    <title>* src/dns.c: id global should be unsigned, in line with DNS header.</title>
    <link>https://hg.ecoscentric.com/ecos/log/d5dc1a185974/packages/net/ns/dns/current/src/dns.c</link>
    <description><![CDATA[* src/dns.c: id global should be unsigned, in line with DNS header.<br/>
	* include/dns_impl.inl (build_query): Guarantee id in header is only<br/>
	16-bits.<br/>
	Thanks to Frank Huang for the report.]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Tue, 12 Aug 2008 16:52:02 +0000</pubDate>
</item>
<item>
    <title>* src/dns.c Various casts and type fixes to stop gcc 4 warnings.</title>
    <link>https://hg.ecoscentric.com/ecos/log/e0d4cd2bcc2c/packages/net/ns/dns/current/src/dns.c</link>
    <description><![CDATA[* src/dns.c Various casts and type fixes to stop gcc 4 warnings.]]></description>
    <author>&#97;&#115;&#108;</author>
    <pubDate>Sat, 30 Jul 2005 11:26:29 +0000</pubDate>
</item>
<item>
    <title>* src/dns.c (cyg_dns_getnameinfo): And another typo</title>
    <link>https://hg.ecoscentric.com/ecos/log/f7cb1caf8d2a/packages/net/ns/dns/current/src/dns.c</link>
    <description><![CDATA[* src/dns.c (cyg_dns_getnameinfo): And another typo]]></description>
    <author>&#97;&#115;&#108;</author>
    <pubDate>Tue, 13 Jul 2004 20:59:54 +0000</pubDate>
</item>
<item>
    <title>* src/dns.c (cyg_dns_getaddrinfo): Typo spotted by Andy Jackson.</title>
    <link>https://hg.ecoscentric.com/ecos/log/c81db0785971/packages/net/ns/dns/current/src/dns.c</link>
    <description><![CDATA[* src/dns.c (cyg_dns_getaddrinfo): Typo spotted by Andy Jackson.]]></description>
    <author>&#97;&#115;&#108;</author>
    <pubDate>Tue, 13 Jul 2004 07:18:35 +0000</pubDate>
</item>
<item>
    <title>Pure pedantry: fix some typos in comments</title>
    <link>https://hg.ecoscentric.com/ecos/log/edfa7bed5cb2/packages/net/ns/dns/current/src/dns.c</link>
    <description><![CDATA[Pure pedantry: fix some typos in comments]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Tue, 24 Jun 2003 05:10:56 +0000</pubDate>
</item>
<item>
    <title>* src/dns.c: (cyg_dns_res_start) New: Allow IPv6 to be used to</title>
    <link>https://hg.ecoscentric.com/ecos/log/1aaed612fe59/packages/net/ns/dns/current/src/dns.c</link>
    <description><![CDATA[* src/dns.c: (cyg_dns_res_start) New: Allow IPv6 to be used to<br/>
        transport queries to the DNS server. This requires a new API<br/>
        function to start the client which if protocol family<br/>
        independent.<br/>
        * tests/dns1.c: Added a test which uses IPv6 as the transport to<br/>
        the DNS server.<br/>
        * doc/dns.sgml: Documentation of new API function for IPv6.<br/>
        * cdl/dns.cdl: Comment that the default DNS server can be an IPv6<br/>
        address.]]></description>
    <author>&#97;&#115;&#108;</author>
    <pubDate>Mon, 26 May 2003 07:33:50 +0000</pubDate>
</item>
<item>
    <title>* doc/dns.sgml: Updated to reflect changes for IPv6.</title>
    <link>https://hg.ecoscentric.com/ecos/log/1f968b35cd30/packages/net/ns/dns/current/src/dns.c</link>
    <description><![CDATA[* doc/dns.sgml: Updated to reflect changes for IPv6.<br/>
        * include/dns_impl.inl (setdomainname): Append a . to the end of<br/>
        the domainname if it does not have one.<br/>
        * cdl/dns.cdl: CYGOPT_NS_DNS_FIRST_FAMILTY to control order of<br/>
        results.<br/>
        * src/dns.c: Order the results from cyg_dns_getaddrinfo.<br/>
        * test/dns1.c: Re-written to perform better testing and for<br/>
        getaddrinfo and getnameinfo.<br/>
        * test/dns2.c: Removed. It does not add anything useful.<br/>
        * src/dns.c (cyg_dns_getnameinfo): New. Interface between<br/>
        getnameinfo and the DNS client.<br/>
        * src/dns.c (cyg_dns_getaddrinfo): New. Interface between<br/>
        getaddrinfo and the DNS client. This supports both IPv4 and IPv6<br/>
        * test/dns1.c: Added tests for getnameinfo using both IPv4 and<br/>
        IPv6 addresses.]]></description>
    <author>&#97;&#115;&#108;</author>
    <pubDate>Mon, 12 May 2003 10:06:05 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 2002-05-31-00:05:29-BST</title>
    <link>https://hg.ecoscentric.com/ecos/log/94b558c9fb67/packages/net/ns/dns/current/src/dns.c</link>
    <description><![CDATA[Merge from eCos master repository on 2002-05-31-00:05:29-BST]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Fri, 31 May 2002 01:05:53 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 2002-05-29-16:32:18-BST</title>
    <link>https://hg.ecoscentric.com/ecos/log/6eb55882e01c/packages/net/ns/dns/current/src/dns.c</link>
    <description><![CDATA[Merge from eCos master repository on 2002-05-29-16:32:18-BST]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Wed, 29 May 2002 18:28:03 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 2002-05-23-21:39:14-BST</title>
    <link>https://hg.ecoscentric.com/ecos/log/d2c90368aeef/packages/net/ns/dns/current/src/dns.c</link>
    <description><![CDATA[Merge from eCos master repository on 2002-05-23-21:39:14-BST]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Thu, 23 May 2002 22:59:51 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 2002-05-20-20:11:54-BST</title>
    <link>https://hg.ecoscentric.com/ecos/log/e0c0827131d1/packages/net/ns/dns/current/src/dns.c</link>
    <description><![CDATA[Merge from eCos master repository on 2002-05-20-20:11:54-BST]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Mon, 20 May 2002 22:19:26 +0000</pubDate>
</item>

  </channel>
</rss>
