<feed xmlns='http://www.w3.org/2005/Atom'>
<title>dhcpcd.git, branch dhcpcd-8</title>
<subtitle>DHCP / IPv4LL / IPv6RA / DHCPv6 client
</subtitle>
<link rel='alternate' type='text/html' href='https://roy.marples.name/cgit/dhcpcd.git/'/>
<entry>
<title>DHCP: Fix reading RENEW messages from inet socket</title>
<updated>2020-12-20T07:08:08+00:00</updated>
<author>
<name>Roy Marples</name>
<email>roy@marples.name</email>
</author>
<published>2020-12-20T07:08:08+00:00</published>
<link rel='alternate' type='text/html' href='https://roy.marples.name/cgit/dhcpcd.git/commit/?id=54d8f218061008278c07fda7abff06c4a2c31d2c'/>
<id>54d8f218061008278c07fda7abff06c4a2c31d2c</id>
<content type='text'>
It helps to use the correct buffer to store the control message ....
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
It helps to use the correct buffer to store the control message ....
</pre>
</div>
</content>
</entry>
<entry>
<title>DHCP6: Apply delegations to interface on carrier up</title>
<updated>2020-06-10T06:37:13+00:00</updated>
<author>
<name>Roy Marples</name>
<email>roy@marples.name</email>
</author>
<published>2020-06-10T06:34:18+00:00</published>
<link rel='alternate' type='text/html' href='https://roy.marples.name/cgit/dhcpcd.git/commit/?id=8a0eb8db023be32c112847582446be48ee34dbf0'/>
<id>8a0eb8db023be32c112847582446be48ee34dbf0</id>
<content type='text'>
Even with DHCP6 turned off for the interface.
As long as it was activated by another interface this is fine.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Even with DHCP6 turned off for the interface.
As long as it was activated by another interface this is fine.
</pre>
</div>
</content>
</entry>
<entry>
<title>NetBSD: Gear up for kernel RA removal.</title>
<updated>2020-06-10T06:23:43+00:00</updated>
<author>
<name>Roy Marples</name>
<email>roy@marples.name</email>
</author>
<published>2020-04-29T13:55:23+00:00</published>
<link rel='alternate' type='text/html' href='https://roy.marples.name/cgit/dhcpcd.git/commit/?id=9ef8622c6dcf2f72d5c0fb83d8e29abd6a2e2971'/>
<id>9ef8622c6dcf2f72d5c0fb83d8e29abd6a2e2971</id>
<content type='text'>
linkmtu will vanish from nd_ifinfo along with other things.
Also, there is not need to pre-fetch ifinfo because flags are no
longer updated when setting ifinfo back again.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
linkmtu will vanish from nd_ifinfo along with other things.
Also, there is not need to pre-fetch ifinfo because flags are no
longer updated when setting ifinfo back again.
</pre>
</div>
</content>
</entry>
<entry>
<title>Linux: fix compile on old ones</title>
<updated>2020-06-10T06:18:29+00:00</updated>
<author>
<name>Roy Marples</name>
<email>roy@marples.name</email>
</author>
<published>2020-06-10T06:13:21+00:00</published>
<link rel='alternate' type='text/html' href='https://roy.marples.name/cgit/dhcpcd.git/commit/?id=6fdd1b8b589f8cec8b017e4b4dfff162730748f0'/>
<id>6fdd1b8b589f8cec8b017e4b4dfff162730748f0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Bump date for prior</title>
<updated>2020-05-12T21:11:22+00:00</updated>
<author>
<name>Roy Marples</name>
<email>roy@marples.name</email>
</author>
<published>2020-05-12T21:11:22+00:00</published>
<link rel='alternate' type='text/html' href='https://roy.marples.name/cgit/dhcpcd.git/commit/?id=895d69067f076ffe9a8cddc37bb5adc32bfe035e'/>
<id>895d69067f076ffe9a8cddc37bb5adc32bfe035e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix neighbor discovery option parsing (#16)</title>
<updated>2020-05-12T21:10:44+00:00</updated>
<author>
<name>Andrew Childs</name>
<email>lorne@cons.org.nz</email>
</author>
<published>2020-05-12T21:08:33+00:00</published>
<link rel='alternate' type='text/html' href='https://roy.marples.name/cgit/dhcpcd.git/commit/?id=825221f9a6d56a1c216eb735eb088ccfffc25507'/>
<id>825221f9a6d56a1c216eb735eb088ccfffc25507</id>
<content type='text'>
* make_option_mask: use `nd_` prefix for nd options

The prefix for neighbor discovery options was partially changed to
`nd6_` in d5700a48edf7006369f766d225e70bbca3d8055c. However
set_option_space continued to use `nd_`. This prevented either
`nd6_prefix_information` or `nd_prefix_information` from being parsed
since the former was in the wrong option space, and the latter did not
have the prefix removed.

* manual: fix nd_ and dhcp6_ option prefixes</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* make_option_mask: use `nd_` prefix for nd options

The prefix for neighbor discovery options was partially changed to
`nd6_` in d5700a48edf7006369f766d225e70bbca3d8055c. However
set_option_space continued to use `nd_`. This prevented either
`nd6_prefix_information` or `nd_prefix_information` from being parsed
since the former was in the wrong option space, and the latter did not
have the prefix removed.

* manual: fix nd_ and dhcp6_ option prefixes</pre>
</div>
</content>
</entry>
<entry>
<title>Release dhcpcd-8.1.9</title>
<updated>2020-04-21T09:29:32+00:00</updated>
<author>
<name>Roy Marples</name>
<email>roy@marples.name</email>
</author>
<published>2020-04-21T09:29:32+00:00</published>
<link rel='alternate' type='text/html' href='https://roy.marples.name/cgit/dhcpcd.git/commit/?id=632cc0765f7b7536e439912ab403713eb1f2ee0e'/>
<id>632cc0765f7b7536e439912ab403713eb1f2ee0e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>align CMSG buffer</title>
<updated>2020-04-21T08:55:50+00:00</updated>
<author>
<name>Roy Marples</name>
<email>roy@marples.name</email>
</author>
<published>2020-04-21T08:55:50+00:00</published>
<link rel='alternate' type='text/html' href='https://roy.marples.name/cgit/dhcpcd.git/commit/?id=4d67bee130ac4ca1b7e19f5081f1b9ce40a04974'/>
<id>4d67bee130ac4ca1b7e19f5081f1b9ce40a04974</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>DHCP: Avoid mis-aligned BOOTP structure</title>
<updated>2020-04-20T21:16:24+00:00</updated>
<author>
<name>Roy Marples</name>
<email>roy@marples.name</email>
</author>
<published>2020-04-20T21:16:24+00:00</published>
<link rel='alternate' type='text/html' href='https://roy.marples.name/cgit/dhcpcd.git/commit/?id=83fba2aeaeba9ace7f4aeff85c36322296236ffc'/>
<id>83fba2aeaeba9ace7f4aeff85c36322296236ffc</id>
<content type='text'>
This was caused by the recent change to pass back the frame header.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This was caused by the recent change to pass back the frame header.
</pre>
</div>
</content>
</entry>
<entry>
<title>cast is not needed</title>
<updated>2020-04-19T09:41:11+00:00</updated>
<author>
<name>Roy Marples</name>
<email>roy@marples.name</email>
</author>
<published>2020-04-19T09:41:11+00:00</published>
<link rel='alternate' type='text/html' href='https://roy.marples.name/cgit/dhcpcd.git/commit/?id=a52bd7cdf755f4d2d6f3c0b6c2083d7ecc3f25ca'/>
<id>a52bd7cdf755f4d2d6f3c0b6c2083d7ecc3f25ca</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
