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
3cde2cb7
Kaydet (Commit)
3cde2cb7
authored
Ara 22, 2001
tarafından
Martin v. Löwis
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Add TCP socket options from glibc 2.2.4. Fixes #495680.
2.2.1 bugfix candidate.
üst
83a3f0c3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
31 additions
and
0 deletions
+31
-0
socketmodule.c
Modules/socketmodule.c
+31
-0
No files found.
Modules/socketmodule.c
Dosyayı görüntüle @
3cde2cb7
...
...
@@ -3621,6 +3621,37 @@ init_socket(void)
#ifdef TCP_MAXSEG
insint
(
d
,
"TCP_MAXSEG"
,
TCP_MAXSEG
);
#endif
#ifdef TCP_CORK
insint
(
d
,
"TCP_CORK"
,
TCP_CORK
);
#endif
#ifdef TCP_KEEPIDLE
insint
(
d
,
"TCP_KEEPIDLE"
,
TCP_KEEPIDLE
);
#endif
#ifdef TCP_KEEPINTVL
insint
(
d
,
"TCP_KEEPINTVL"
,
TCP_KEEPINTVL
);
#endif
#ifdef TCP_KEEPCNT
insint
(
d
,
"TCP_KEEPCNT"
,
TCP_KEEPCNT
);
#endif
#ifdef TCP_SYNCNT
insint
(
d
,
"TCP_SYNCNT"
,
TCP_SYNCNT
);
#endif
#ifdef TCP_LINGER2
insint
(
d
,
"TCP_LINGER2"
,
TCP_LINGER2
);
#endif
#ifdef TCP_DEFER_ACCEPT
insint
(
d
,
"TCP_DEFER_ACCEPT"
,
TCP_DEFER_ACCEPT
);
#endif
#ifdef TCP_WINDOW_CLAMP
insint
(
d
,
"TCP_WINDOW_CLAMP"
,
TCP_WINDOW_CLAMP
);
#endif
#ifdef TCP_INFO
insint
(
d
,
"TCP_INFO"
,
TCP_INFO
);
#endif
#ifdef TCP_QUICKACK
insint
(
d
,
"TCP_QUICKACK"
,
TCP_QUICKACK
);
#endif
/* IPX options */
#ifdef IPX_TYPE
...
...
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