summaryrefslogtreecommitdiffstats
path: root/socket.c
Commit message (Expand)AuthorAgeFilesLines
* Synchronize license comments with LICENSE.Kaz Kylheku2016-10-011-16/+17
* Fix crash in getaddrinfo.Kaz Kylheku2016-07-031-2/+4
* Fix memory leak in dgram socket streams.Kaz Kylheku2016-06-081-0/+1
* Use width of 8 for struct dgram boolean bitfields.Kaz Kylheku2016-05-291-2/+2
* Support byte oriented mode in dgram sockets.Kaz Kylheku2016-05-291-3/+19
* Rename struct dgram_stream member.Kaz Kylheku2016-05-291-5/+5
* Strengthen against resource leaks upon exceptions.Kaz Kylheku2016-04-211-3/+9
* Recycle conses in unget-char and read-until-match.Kaz Kylheku2016-04-201-1/+1
* Allow unlimited character pushback in unget-char.Kaz Kylheku2016-04-191-11/+4
* Make open_socket static and register in socket.c.Kaz Kylheku2016-04-141-1/+2
* Make open_sockfd static.Kaz Kylheku2016-04-141-21/+21
* New open-socket-pair function.Kaz Kylheku2016-04-141-1/+59
* Consolidate repeated address unpacking code.Kaz Kylheku2016-04-141-14/+16
* Fix error handling in dgram case of sock-accept.Kaz Kylheku2016-04-141-10/+11
* Bugfix: support abstract UNIX socket addresses on Linux.Kaz Kylheku2016-03-311-2/+5
* sock-set-peer shouldn't mark dgram sockets connected.Kaz Kylheku2016-03-311-1/+5
* Rename badly named socket-related internal funs.Kaz Kylheku2016-03-311-16/+16
* Permissive stream open mode strings.Kaz Kylheku2016-03-191-9/+8
* Size mode meaningful in datagram sockets.Kaz Kylheku2016-03-191-11/+20
* Nuke accidental tabs.Kaz Kylheku2016-03-191-9/+9
* Sockets are r+b by default, not r+.Kaz Kylheku2016-03-181-1/+1
* Timeout parameter in sock-accept.Kaz Kylheku2016-03-151-7/+38
* Make connect interruptible and support timeout.Kaz Kylheku2016-03-151-3/+65
* Implement socket timeouts.Kaz Kylheku2016-03-151-0/+35
* sock-connect return value change.Kaz Kylheku2016-03-141-1/+1
* All stdio streams get line buffering with i mode.Kaz Kylheku2016-03-141-1/+0
* Mac OS X: must clear sockaddr in order to bind.Kaz Kylheku2016-03-101-0/+2
* Solaris: cannot sendto on connected dgram socket.Kaz Kylheku2016-03-101-2/+8
* Diagnose operations on closed socket.Kaz Kylheku2016-03-071-23/+42
* Revamped naming for socket streams.Kaz Kylheku2016-03-071-5/+32
* sock_accept: uninitialized socklen_t.Kaz Kylheku2016-03-071-1/+1
* gc bugs: more instances of wrong mutations.Kaz Kylheku2016-03-071-1/+1
* Show failing address in sock-connect error.Kaz Kylheku2016-03-071-2/+2
* Special implementation of dgram socket streams.Kaz Kylheku2016-03-061-28/+488
* Refer to correct socket function names in errors.Kaz Kylheku2016-03-061-3/+3
* Socket streams know their connected peer address.Kaz Kylheku2016-02-271-0/+2
* Do the SO_REUSEADDR thing when binding socket.Kaz Kylheku2016-02-271-2/+5
* Adding socket support: unix, ipv4, ipv6.Kaz Kylheku2016-02-261-0/+382