Issue #22378: socket module: add SO_MARK.

parent c58c7d48
......@@ -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
......
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