summaryrefslogtreecommitdiff
path: root/src/lib/net/socket.c
AgeCommit message (Collapse)Author
2018-09-20Add a tor_release_socket_ownership() function.Nick Mathewson
2018-08-01Refactor tor_ersatz_socketpair() not to need socket.Nick Mathewson
This change also makes tor_ersatz_socketpair() follow the same interface as socketpair() rather than tor_socketpair(), so it now needs to be wrapped in the same code as socketpair() does.
2018-08-01Extract tor_ersatz_socketpair into a new c fileNick Mathewson
I'm doing this because I want to make it a lower-level function again, so that we can use it without linking in the rest of the universe.
2018-07-10Rename torlog.[ch] to log.[ch]Nick Mathewson
Fun fact: these files used to be called log.[ch] until we ran into conflicts with systems having a log.h file. But now that we always include "lib/log/log.h", we should be fine.
2018-07-10File-level summary documentation for src/lib/*/*.[ch]Nick Mathewson
2018-06-28Move network_init to lib/netNick Mathewson
2018-06-28Move socket-errno code into lib/netNick Mathewson
2018-06-27Move read/write_all_to_socket into lib/net.Nick Mathewson
2018-06-27Move network code to libtor-net.Nick Mathewson
There are some additional changes to come: those points are marked by XXXX.