Issue #22378: socket module: add SO_MARK.

This commit is contained in:
Charles-François Natali 2014-09-18 23:18:46 +01:00
parent c58c7d487b
commit ea07eb9469
1 changed files with 3 additions and 0 deletions

View File

@ -6248,6 +6248,9 @@ PyInit__socket(void)
#ifdef SO_PRIORITY
PyModule_AddIntMacro(m, SO_PRIORITY);
#endif
#ifdef SO_MARK
PyModule_AddIntMacro(m, SO_MARK);
#endif
/* Maximum number of connections for "listen" */
#ifdef SOMAXCONN