Issue 6971: Add the SIO_KEEPALIVE_VALS option to socket.ioctl (original) (raw)

Issue6971

Created on 2009-09-22 21:50 by kristjan.jonsson, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
wsaioctl.patch kristjan.jonsson,2009-09-22 21:50
Messages (4)
msg93020 - (view) Author: Kristján Valur Jónsson (kristjan.jonsson) * (Python committer) Date: 2009-09-22 21:50
Adding the SIO_KEEPALIVE_VALS option to socket.ioctl on windows allows a windows user to specify the timeout and interval for TCP keepalive support differently from the defaults specified in RFC 1122 on a per-socket basis. The 'option' is a tuple corresponging to the 'struct tcp_keepalive' expected by WSAIoctl See http://msdn.microsoft.com/en-us/library/dd877220(VS.85).aspx for details.
msg93107 - (view) Author: Kristján Valur Jónsson (kristjan.jonsson) * (Python committer) Date: 2009-09-25 15:21
Due to lack of comments, and the straight-forwardness of this change, I committed it to the trunk in revision 75054
msg93144 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2009-09-25 21:15
Will you merge to py3k?
msg93185 - (view) Author: Kristján Valur Jónsson (kristjan.jonsson) * (Python committer) Date: 2009-09-27 21:11
Ported to py3k in revision 75100
History
Date User Action Args
2022-04-11 14:56:53 admin set github: 51220
2009-09-27 21:11:14 kristjan.jonsson set keywords:patch, patch, easymessages: +
2009-09-25 21:15:34 pitrou set keywords:patch, patch, easynosy: + pitroumessages: +
2009-09-25 15:21:07 kristjan.jonsson set status: open -> closedkeywords:patch, patch, easyresolution: acceptedmessages: +
2009-09-22 23:58:28 kristjan.jonsson set keywords:patch, patch, easytype: enhancement
2009-09-22 21:50:28 kristjan.jonsson create