gh-91968: Add socket constants SO_USER_COOKIE/SO_RTABLE from BSD (#91967)

Those are somewhat equivalent to Linux' SO_MARK.

Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com>
This commit is contained in:
David CARLIER 2022-05-09 00:19:41 +01:00 committed by GitHub
parent 859250cc55
commit 9d85aba9e2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 12 additions and 0 deletions

View file

@ -7595,6 +7595,12 @@ PyInit__socket(void)
#ifdef SO_MARK
PyModule_AddIntMacro(m, SO_MARK);
#endif
#ifdef SO_USER_COOKIE
PyModule_AddIntMacro(m, SO_USER_COOKIE);
#endif
#ifdef SO_RTABLE
PyModule_AddIntMacro(m, SO_RTABLE);
#endif
#ifdef SO_DOMAIN
PyModule_AddIntMacro(m, SO_DOMAIN);
#endif