Issue #22378: socket module: add SO_MARK.
diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c
index 7738c30..cb29821 100644
--- a/Modules/socketmodule.c
+++ b/Modules/socketmodule.c
@@ -6248,6 +6248,9 @@
 #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