<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/waitress.git, branch bugfix/socket_flags_windows</title>
<subtitle>github.com: Pylons/waitress.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/waitress.git/'/>
<entry>
<title>Add HAS_IPV6 to compat</title>
<updated>2016-10-14T22:01:21+00:00</updated>
<author>
<name>Bert JW Regeer</name>
<email>bertjw@regeer.org</email>
</author>
<published>2016-10-14T21:59:25+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/waitress.git/commit/?id=57ea8381ac0e95a3feff58655fade698e70f9eee'/>
<id>57ea8381ac0e95a3feff58655fade698e70f9eee</id>
<content type='text'>
Disable IPv6 support if there is no IPv6 support on the platform
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Disable IPv6 support if there is no IPv6 support on the platform
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'bugfix/port_integer_windows' into bugfix/socket_flags_windows</title>
<updated>2016-10-14T21:15:47+00:00</updated>
<author>
<name>Bert JW Regeer</name>
<email>bertjw@regeer.org</email>
</author>
<published>2016-10-14T21:15:47+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/waitress.git/commit/?id=d10889694304e79ff52a61512e8b16948433be23'/>
<id>d10889694304e79ff52a61512e8b16948433be23</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add Python 2.7 to Appveyor</title>
<updated>2016-10-14T21:06:26+00:00</updated>
<author>
<name>Bert JW Regeer</name>
<email>bertjw@regeer.org</email>
</author>
<published>2016-10-14T20:58:04+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/waitress.git/commit/?id=956a1c4de77addbe22c3e718047ab42a600f333c'/>
<id>956a1c4de77addbe22c3e718047ab42a600f333c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Python 2 on Windows doesn't allow service names for ports</title>
<updated>2016-10-14T21:06:26+00:00</updated>
<author>
<name>Bert JW Regeer</name>
<email>bertjw@regeer.org</email>
</author>
<published>2016-10-14T20:54:50+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/waitress.git/commit/?id=4b7cdc336bca1ebce44646ac99f08b5a2386228b'/>
<id>4b7cdc336bca1ebce44646ac99f08b5a2386228b</id>
<content type='text'>
However Python 3 apparently does, since we have a test for this, and
upon changing things tests started failing on Python 3 on Windows.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
However Python 3 apparently does, since we have a test for this, and
upon changing things tests started failing on Python 3 on Windows.
</pre>
</div>
</content>
</entry>
<entry>
<title>On Windows, turn port into an integer</title>
<updated>2016-10-14T20:48:16+00:00</updated>
<author>
<name>Bert JW Regeer</name>
<email>bertjw@regeer.org</email>
</author>
<published>2016-10-14T20:48:16+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/waitress.git/commit/?id=fda05ee9ec48a970031b325c21a618beaec9a8c7'/>
<id>fda05ee9ec48a970031b325c21a618beaec9a8c7</id>
<content type='text'>
We can't use service names instead of port numbers on Windows, so
attempt to turn the port into an integer. If unable to do so, raise an
error.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
We can't use service names instead of port numbers on Windows, so
attempt to turn the port into an integer. If unable to do so, raise an
error.
</pre>
</div>
</content>
</entry>
<entry>
<title>On Windows IPPROTO_IPV6 may not be defined in socket</title>
<updated>2016-10-14T20:34:11+00:00</updated>
<author>
<name>Bert JW Regeer</name>
<email>bertjw@regeer.org</email>
</author>
<published>2016-10-14T20:34:11+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/waitress.git/commit/?id=ed67c43759a2f46104582eceb3913f8e0c9e0978'/>
<id>ed67c43759a2f46104582eceb3913f8e0c9e0978</id>
<content type='text'>
Unfortunately due to some reshuffling of headers on Windows, and Python
defining the wrong Windows version, IPPROTO_IPV6 may not be defined on
Windows. If this is the case, we set them to some magic values.

If there is an OS out there that doesn't define those flags, and they
are not windows, we raise a RuntimeError because we need to add some
magic variables, waitress requires IPv6...
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Unfortunately due to some reshuffling of headers on Windows, and Python
defining the wrong Windows version, IPPROTO_IPV6 may not be defined on
Windows. If this is the case, we set them to some magic values.

If there is an OS out there that doesn't define those flags, and they
are not windows, we raise a RuntimeError because we need to add some
magic variables, waitress requires IPv6...
</pre>
</div>
</content>
</entry>
<entry>
<title>Back to development</title>
<updated>2016-09-01T05:04:18+00:00</updated>
<author>
<name>Bert JW Regeer</name>
<email>bertjw@regeer.org</email>
</author>
<published>2016-09-01T05:04:18+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/waitress.git/commit/?id=7e807c9ecefb2388d1e696c3253085d674ac4590'/>
<id>7e807c9ecefb2388d1e696c3253085d674ac4590</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Prep for 1.0.0</title>
<updated>2016-09-01T04:44:13+00:00</updated>
<author>
<name>Bert JW Regeer</name>
<email>bertjw@regeer.org</email>
</author>
<published>2016-09-01T04:41:58+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/waitress.git/commit/?id=d74a67ba34115eb0eaf15f8f0e049f5b6b67fb5e'/>
<id>d74a67ba34115eb0eaf15f8f0e049f5b6b67fb5e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>remove deprecation of host/port</title>
<updated>2016-09-01T04:42:57+00:00</updated>
<author>
<name>Bert JW Regeer</name>
<email>bertjw@regeer.org</email>
</author>
<published>2016-09-01T04:35:22+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/waitress.git/commit/?id=d641154314545f72477801040f61e4afdef44af3'/>
<id>d641154314545f72477801040f61e4afdef44af3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Revert "Update CHANGES and make promise regarding deprecation"</title>
<updated>2016-09-01T04:42:57+00:00</updated>
<author>
<name>Bert JW Regeer</name>
<email>bertjw@regeer.org</email>
</author>
<published>2016-09-01T04:23:13+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/waitress.git/commit/?id=4600af04ffc287d8b8f3e44413059be7cfaca5ac'/>
<id>4600af04ffc287d8b8f3e44413059be7cfaca5ac</id>
<content type='text'>
This reverts commit b0ed433ba325ccb9d85723facec8ec5bf2be4cbf.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This reverts commit b0ed433ba325ccb9d85723facec8ec5bf2be4cbf.
</pre>
</div>
</content>
</entry>
</feed>
