Commit 3b958e3b authored by Larry Hastings's avatar Larry Hastings

Issue #8235: _socket: Add the constant ``SO_SETFIB``. SO_SETFIB is

a socket option available on FreeBSD 7.1 and newer.
parent 5ac006df
......@@ -134,6 +134,9 @@ Library
This is a behavior change, so email's minor version number is now bumped, to
version 4.0.2, for the 2.7 release.
- Issue #8235: _socket: Add the constant ``SO_SETFIB``. SO_SETFIB is
a socket option available on FreeBSD 7.1 and newer.
Extension Modules
-----------------
......
......@@ -4779,6 +4779,9 @@ init_socket(void)
#ifdef SO_TYPE
PyModule_AddIntConstant(m, "SO_TYPE", SO_TYPE);
#endif
#ifdef SO_SETFIB
PyModule_AddIntConstant(m, "SO_SETFIB", SO_SETFIB);
#endif
/* Maximum number of connections for "listen" */
#ifdef SOMAXCONN
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment