summaryrefslogtreecommitdiff
path: root/socket.c
Commit message (Collapse)AuthorAgeFilesLines
* Bump the year to 2014.Wayne Davison2014-01-261-1/+1
|
* Update copyright year.Wayne Davison2013-01-191-1/+1
|
* Fix misplaced parens on getnameinfo() call.Wayne Davison2011-08-061-2/+2
|
* Fix Minix build errors. Fixes bug 8313.Wayne Davison2011-07-221-0/+6
|
* Replace another inet_ntop() call with getnameinfo().Wayne Davison2011-07-161-5/+4
|
* Add more connect debug info, as Carlos suggested.Wayne Davison2011-07-121-2/+10
|
* Move freeaddrinfo() call after failure-reporting loop.Wayne Davison2011-07-111-1/+1
|
* Added "listen backlog" daemon config paramater.Wayne Davison2011-01-031-1/+1
|
* Report all socket connection errors if we fail.Wayne Davison2011-01-011-5/+23
| | | | Fixes bug 6588.
* Fix a couple socketpair_tcp() issues (see bug 7514).Wayne Davison2010-06-191-70/+40
|
* Handle simultaneous arrival of multiple connections.Matt McCutchen2009-01-131-1/+1
|
* Update the copyright year.Wayne Davison2009-01-031-1/+1
|
* Fixed a bunch of "warn_unused_result" compiler warnings.Wayne Davison2008-11-091-5/+15
|
* Split up the ifuncs.h file into 3 .h files.Wayne Davison2008-09-011-1/+1
|
* Added the --info=FLAGS an --debug=FLAGS options, which allowsWayne Davison2008-07-131-4/+4
| | | | fine-grained output control (in addition to the coarse -v).
* Moved the setting of the socket options before the connect().Wayne Davison2008-04-151-0/+6
|
* Include 2008 in the copyright years.Wayne Davison2008-03-011-1/+1
|
* Adding --contimeout=SECONDS option.Wayne Davison2007-11-281-2/+24
|
* Moved become_daemon() into clientserver.c.Wayne Davison2007-09-301-29/+0
|
* Moved inline functions from rsync.h into ifuncs.h.Wayne Davison2007-09-221-0/+1
|
* Fixed a null-pointer dereference pointed out by Olivier Thauvin.Wayne Davison2007-08-161-1/+1
|
* Added support for a %H escape in the value of the RSYNC_CONNECT_PROGWayne Davison2007-08-111-0/+36
| | | | environment variable.
* Tweaking the license text a bit more.Wayne Davison2007-07-101-2/+3
|
* Switching to GPL 3.Wayne Davison2007-07-071-3/+2
|
* The --iconv option has now made it to the trunk.Wayne Davison2007-04-261-1/+1
|
* Further modifications to the copyright comment section.Wayne Davison2007-02-041-4/+3
|
* Got rid of type-casting into isFOO() and toFOO() functions byWayne Davison2006-11-091-1/+1
| | | | using static inline functions that take a signed char pointer.
* Need to include netinet/tcp.h to get TCP_NODELAY defined.Wayne Davison2006-10-311-0/+1
|
* Updated the FSF's address to an even newer one.Wayne Davison2006-04-251-3/+3
|
* - Updated the address for the FSF in the opening comment.Wayne Davison2006-04-251-28/+22
| | | | | | | - Standardized the format of the opening comment, including adding a brief description of what's in the file for those that lacked it. - Added some missing copyright lines. - Some minor whitespace tweaks (in a few of the files).
* Moved the include of netinet/ip.h here along with its apparentWayne Davison2006-04-111-0/+2
| | | | prerequisite, netinet/in_systm.h .
* Improved the bind()-failure message to mention what family failed.Wayne Davison2006-04-021-1/+2
|
* If open_socket_in() fails, we now log the reasons why.Wayne Davison2006-03-221-4/+25
|
* Make extra sure that authbuf can't overflow.Wayne Davison2006-03-071-1/+1
|
* Call base4_encode() with "1" for its new "pad" arg so that theWayne Davison2006-03-061-1/+1
| | | | | Proxy-Authorization header is properly padded with trailing '=' chars.
* Simplified the conditional prior to the SIGACTION code.Wayne Davison2006-02-031-3/+3
|
* Call SIGACTION() instead of signal().Wayne Davison2006-02-021-1/+11
|
* Got rid of a superfluous newline.Wayne Davison2005-11-101-1/+0
|
* Call logfile_close() and logfile_reopen() (tweaked function names).Wayne Davison2005-04-141-3/+3
|
* Changed the bind_address local variables to be named bind_addrWayne Davison2005-04-051-14/+14
| | | | in order to avoid confusion with the bind_address global.
* - Look for last '@' in a user@host spec.Wayne Davison2005-03-011-1/+1
|
* The daemon loop needs to call log_open() because it called log_close().Wayne Davison2005-02-181-0/+3
|
* John E. Malmberg convinced me to standardize on #ifs for definedWayne Davison2005-02-141-6/+4
| | | | values instead of non-zero.
* Tweaked one or more warning messages.Wayne Davison2005-01-311-3/+3
|
* Got rid of an unreachable free() call.Wayne Davison2005-01-281-1/+0
|
* Use "#if" (not "#ifdef") for configure-defined macros.Wayne Davison2005-01-281-2/+2
|
* No need to call log_open() in start_accept_loop() becauseWayne Davison2005-01-281-3/+0
| | | | rsync_module() calls log_init() before it gives up its privileges.
* Added a missing newline to an error message.Wayne Davison2005-01-271-1/+1
|
* Actually, since the close calls shouldn't fail (now that listenerWayne Davison2004-09-161-3/+1
| | | | | is properly set to -1 on close), we don't really need to play the save-errno game after all.
* - Set "listener" to -1 after we close it so that the error-handlerWayne Davison2004-09-161-3/+7
| | | | | doesn't try to re-close it. - Set blocking I/O before the second (final) connect() call.