summaryrefslogtreecommitdiff
path: root/Modules/socketmodule.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #26857: Workaround for missing symbol "gethostbyaddr_r" on Android.Stefan Krah2016-04-261-1/+1
* Issue #26057: Got rid of nonneeded use of PyUnicode_FromObject().Serhiy Storchaka2016-04-131-24/+20
* Issue #26685: Raise OSError if closing a socket failsMartin Panter2016-04-111-1/+5
* socketmodule.c: error if option larger than INT_MAXVictor Stinner2016-03-231-3/+16
* Add socket finalizerVictor Stinner2016-03-211-18/+53
* ResourceWarning: Revert change on socket and scandirVictor Stinner2016-03-191-1/+2
* On ResourceWarning, log traceback where the object was allocatedVictor Stinner2016-03-191-2/+1
* Issue #26406: merge from 3.5Ned Deily2016-02-231-4/+10
|\
| * Issue #26406: Avoid unnecessary serialization of getaddrinfo(3) calls onNed Deily2016-02-231-4/+10
* | Issue #25924: merge with 3.5Ned Deily2016-02-151-6/+2
|\ \ | |/ |/|
| * Merge 3.5: Issue #26227Victor Stinner2016-01-281-2/+24
| |\
| * | Fix compiler warning about obviously unreachable code.Raymond Hettinger2016-01-241-4/+0
| * | Issue #25923: Added more const qualifiers to signatures of static and private...Serhiy Storchaka2015-12-251-2/+2
* | | Issue #25924: Avoid unnecessary serialization of getaddrinfo(3) calls on OS XNed Deily2016-02-151-2/+18
| |/ |/|
* | Windows: Decode hostname from ANSI code pageVictor Stinner2016-01-281-2/+24
|/
* Close #24784: Fix compilation without thread supportVictor Stinner2015-10-111-0/+2
* Merge 3.4Victor Stinner2015-09-111-508/+811
|\
| * Issue #24732, #23834: Fix sock_accept_impl() on WindowsVictor Stinner2015-07-271-0/+5
| * Issue #22631: Added Linux-specific socket constant CAN_RAW_FD_FRAMES.Larry Hastings2015-04-131-0/+3
| * Issue #23618: Fix internal_select() for negative timeout (blocking socket) whenVictor Stinner2015-04-091-4/+9
| * Issue #23834: Fix the default socket timeoutVictor Stinner2015-04-091-1/+2
| * Issue #22117: Fix sock_call_ex() for non-blocking socketVictor Stinner2015-04-061-1/+1
| * Issue #23853: socket.socket.sendall() does no more reset the socket timeoutVictor Stinner2015-04-061-16/+41
| * Issue #23834: Fix initial value of the socket timeoutVictor Stinner2015-04-061-2/+2
| * Issue #23834: Simplify timeout handlingVictor Stinner2015-04-031-27/+13
| * Issue #23618: Ooops, remove abort() added for debug purposeVictor Stinner2015-04-021-1/+0
| * Issue #23618: Fix sock_connect_impl(), set the socket error codeVictor Stinner2015-04-021-1/+7
| * Issue #23618: socket.socket.connect() now waits until the connection completesVictor Stinner2015-04-021-124/+178
| * Issue #23618: Don't declare recvmsg/sendmsg helper functions on WindowsVictor Stinner2015-04-021-7/+6
| * Issue #23834: Fix sock_call(), set deadline_initialized to recompute the timeoutVictor Stinner2015-04-021-0/+1
| * Issue #23834: Modify socket.sendall() to reuse sock_call() withVictor Stinner2015-04-011-29/+21
| * Issue #23834: Add sock_call() helper functionVictor Stinner2015-04-011-256/+323
| * merge 3.4Benjamin Peterson2015-04-011-1/+2
| |\
| * | Issue #23618: Fix EINTR handling on WindowsVictor Stinner2015-04-011-2/+2
| * | Issue #23618: Enhance EINTR handling in socket.connect()Victor Stinner2015-03-311-35/+37
| * | Issue #23618: Fix EINTR handling in socket.connect()Victor Stinner2015-03-311-10/+8
| * | Issue #23618: Cleanup internal_connect() in socketmodule.cVictor Stinner2015-03-311-3/+1
| * | Issue #23618: Refactor internal_connect()Victor Stinner2015-03-311-79/+30
| * | Issue #23618: Refactor internal_connect()Victor Stinner2015-03-311-35/+57
| * | Issue #22117: Fix integer overflow check in socket_parse_timeout() on WindowsVictor Stinner2015-03-311-3/+6
| * | Issue #23618: Fix internal_connect_select()Victor Stinner2015-03-311-1/+1
| * | Issue #23618: internal_connect_select() now waits also for error eventsVictor Stinner2015-03-311-6/+15
| * | Issue #23618: Refactor internal_select() to prepare socket.connect() for EINTRVictor Stinner2015-03-311-13/+23
| * | Issue #23618: Refactor the _socket moduleVictor Stinner2015-03-311-17/+11
| * | Issue #22117: Replace usage of _PyTime_ROUND_UP with _PyTime_ROUND_CEILINGVictor Stinner2015-03-301-6/+7
| * | Issue #22117: Fix usage of _PyTime_AsTimeval()Victor Stinner2015-03-301-6/+2
| * | Issue #22117: The socket module uses _PyTime_t timestamp for timeoutsVictor Stinner2015-03-281-90/+123
| * | Issue #23618, #22117: refactor socketmodule.cVictor Stinner2015-03-271-83/+113
| * | Fix compiler warnings: comparison between signed and unsigned numbersVictor Stinner2015-03-201-1/+1
| * | Issue #23001: Few functions in modules mmap, ossaudiodev, socket, ssl, andSerhiy Storchaka2015-03-201-47/+60