Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
5fe60e7a
Kaydet (Commit)
5fe60e7a
authored
Nis 06, 2006
tarafından
Martin v. Löwis
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Patch #1462080: Conditionalize some NETLINK defines.
üst
7d6b8954
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
+11
-0
socketmodule.c
Modules/socketmodule.c
+11
-0
No files found.
Modules/socketmodule.c
Dosyayı görüntüle @
5fe60e7a
...
...
@@ -4036,7 +4036,12 @@ init_socket(void)
/* */
PyModule_AddIntConstant
(
m
,
"AF_NETLINK"
,
AF_NETLINK
);
PyModule_AddIntConstant
(
m
,
"NETLINK_ROUTE"
,
NETLINK_ROUTE
);
#ifdef NETLINK_SKIP
PyModule_AddIntConstant
(
m
,
"NETLINK_SKIP"
,
NETLINK_SKIP
);
#endif
#ifdef NETLINK_W1
PyModule_AddIntConstant
(
m
,
"NETLINK_W1"
,
NETLINK_W1
);
#endif
PyModule_AddIntConstant
(
m
,
"NETLINK_USERSOCK"
,
NETLINK_USERSOCK
);
PyModule_AddIntConstant
(
m
,
"NETLINK_FIREWALL"
,
NETLINK_FIREWALL
);
#ifdef NETLINK_TCPDIAG
...
...
@@ -4048,11 +4053,17 @@ init_socket(void)
#ifdef NETLINK_XFRM
PyModule_AddIntConstant
(
m
,
"NETLINK_XFRM"
,
NETLINK_XFRM
);
#endif
#ifdef NETLINK_ARPD
PyModule_AddIntConstant
(
m
,
"NETLINK_ARPD"
,
NETLINK_ARPD
);
#endif
#ifdef NETLINK_ROUTE6
PyModule_AddIntConstant
(
m
,
"NETLINK_ROUTE6"
,
NETLINK_ROUTE6
);
#endif
PyModule_AddIntConstant
(
m
,
"NETLINK_IP6_FW"
,
NETLINK_IP6_FW
);
PyModule_AddIntConstant
(
m
,
"NETLINK_DNRTMSG"
,
NETLINK_DNRTMSG
);
#ifdef NETLINK_TAPBASE
PyModule_AddIntConstant
(
m
,
"NETLINK_TAPBASE"
,
NETLINK_TAPBASE
);
#endif
#endif
/* AF_NETLINK */
#ifdef AF_ROUTE
/* Alias to emulate 4.4BSD */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment