index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Modules
/
socketmodule.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
Issue #28480: Avoid label at end of compound statement --without-threads
Martin Panter
2016-10-20
1
-0/+1
*
Issue #28471: Fix crash (GIL state related) in socket.setblocking
Yury Selivanov
2016-10-18
1
-9/+15
*
Issue #28139: Merge indentation fixes from 3.5 into 3.6
Martin Panter
2016-09-17
1
-5/+6
|
\
|
*
Issue #28139: Fix messed up indentation
Martin Panter
2016-09-17
1
-5/+6
|
*
Issue #27895: Spelling fixes (Contributed by Ville Skyttä).
Martin Panter
2016-09-07
1
-1/+1
*
|
Fix NULL check in sock_sendmsg_iovec. CID 1372885
Christian Heimes
2016-09-13
1
-1/+1
*
|
socket: Fix memory leak in sendmsg() and sendmsg_afalg()
Victor Stinner
2016-09-12
1
-5/+12
*
|
Cleanup socketmodule.c
Victor Stinner
2016-09-12
1
-13/+31
*
|
Issue 18550: Check return value of ioctl() / fnctl() in internal_setblocking
Christian Heimes
2016-09-08
1
-20/+41
*
|
use the '__linux__' instead 'linux' preprocessor define
Benjamin Peterson
2016-09-07
1
-4/+4
*
|
Issue #27744: correct comment and markup
Christian Heimes
2016-09-05
1
-1/+1
*
|
Issue #27744: Add AF_ALG (Linux Kernel crypto) to socket module.
Christian Heimes
2016-09-05
1
-53/+378
*
|
Issue #27895: Spelling fixes (Contributed by Ville Skyttä).
Raymond Hettinger
2016-08-30
1
-1/+1
*
|
#26907: add some missing getsockopt constants.
R David Murray
2016-08-24
1
-0/+12
*
|
Issue #27702: Only expose SOCK_RAW when defined
Berker Peksag
2016-08-08
1
-0/+3
*
|
Merge 3.5 (INVALID_SOCKET)
Victor Stinner
2016-07-22
1
-6/+6
|
\
\
|
|
/
|
*
socket: use INVALID_SOCKET
Victor Stinner
2016-07-22
1
-5/+6
*
|
Merge 3.5 (fix internal_select)
Victor Stinner
2016-07-22
1
-1/+1
|
\
\
|
|
/
|
*
socket: Fix internal_select()
Victor Stinner
2016-07-22
1
-1/+1
*
|
Remove duplicate AF_INET6 addition
Martin Panter
2016-06-25
1
-3/+0
*
|
Issue #26536: Use spaces instead of tabs
Berker Peksag
2016-06-18
1
-4/+4
*
|
Issue #26536: socket.ioctl now supports SIO_LOOPBACK_FAST_PATH. Patch by Dani...
Steve Dower
2016-06-17
1
-3/+23
*
|
- Comment out socket (SO_REUSEPORT) and posix (O_SHLOCK, O_EXLOCK) constants
doko@ubuntu.com
2016-06-13
1
-0/+2
*
|
Issue #26857: The gethostbyaddr_r() workaround is no longer needed with
Stefan Krah
2016-05-22
1
-1/+5
*
|
Issue #26857: Workaround for missing symbol "gethostbyaddr_r" on Android.
Stefan Krah
2016-04-26
1
-1/+1
*
|
Issue #26057: Got rid of nonneeded use of PyUnicode_FromObject().
Serhiy Storchaka
2016-04-13
1
-24/+20
*
|
Issue #26685: Raise OSError if closing a socket fails
Martin Panter
2016-04-11
1
-1/+5
*
|
socketmodule.c: error if option larger than INT_MAX
Victor Stinner
2016-03-23
1
-3/+16
*
|
Add socket finalizer
Victor Stinner
2016-03-21
1
-18/+53
*
|
ResourceWarning: Revert change on socket and scandir
Victor Stinner
2016-03-19
1
-1/+2
*
|
On ResourceWarning, log traceback where the object was allocated
Victor Stinner
2016-03-19
1
-2/+1
*
|
Issue #26406: merge from 3.5
Ned Deily
2016-02-23
1
-4/+10
|
\
\
|
|
/
|
*
Issue #26406: Avoid unnecessary serialization of getaddrinfo(3) calls on
Ned Deily
2016-02-23
1
-4/+10
*
|
Issue #25924: merge with 3.5
Ned Deily
2016-02-15
1
-2/+18
|
\
\
|
|
/
|
*
Issue #25924: Avoid unnecessary serialization of getaddrinfo(3) calls on OS X
Ned Deily
2016-02-15
1
-2/+18
*
|
Merge 3.5: Issue #26227
Victor Stinner
2016-01-28
1
-2/+24
|
\
\
|
|
/
|
*
Windows: Decode hostname from ANSI code page
Victor Stinner
2016-01-28
1
-2/+24
|
*
Close #24784: Fix compilation without thread support
Victor Stinner
2015-10-11
1
-0/+2
*
|
Fix compiler warning about obviously unreachable code.
Raymond Hettinger
2016-01-25
1
-4/+0
*
|
Issue #25923: Added more const qualifiers to signatures of static and private...
Serhiy Storchaka
2015-12-25
1
-2/+2
*
|
Close #24784: Fix compilation without thread support
Victor Stinner
2015-10-11
1
-0/+2
|
/
*
Merge 3.4
Victor Stinner
2015-09-11
1
-3/+1
|
\
|
*
Issue #24684: socket.socket.getaddrinfo() now calls
Victor Stinner
2015-09-11
1
-3/+1
|
*
Issue #23834: Fix socket.sendto(), use the C Py_ssize_t type to store the
Victor Stinner
2015-04-02
1
-1/+2
*
|
Issue #24732, #23834: Fix sock_accept_impl() on Windows
Victor Stinner
2015-07-27
1
-0/+5
*
|
Issue #22631: Added Linux-specific socket constant CAN_RAW_FD_FRAMES.
Larry Hastings
2015-04-13
1
-0/+3
*
|
Issue #23618: Fix internal_select() for negative timeout (blocking socket) when
Victor Stinner
2015-04-09
1
-4/+9
*
|
Issue #23834: Fix the default socket timeout
Victor Stinner
2015-04-09
1
-1/+2
*
|
Issue #22117: Fix sock_call_ex() for non-blocking socket
Victor Stinner
2015-04-06
1
-1/+1
*
|
Issue #23853: socket.socket.sendall() does no more reset the socket timeout
Victor Stinner
2015-04-06
1
-16/+41
[next]