aboutsummaryrefslogtreecommitdiffstats
path: root/loadparm.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
|
* Added "listen backlog" daemon config paramater.Wayne Davison2011-01-031-0/+4
|
* Daemon supports forward-DNS lookups for simple hostnamesWayne Davison2011-01-031-0/+4
| | | | in hosts deny/allow config settings.
* Add some new dont-compress suffixes.Wayne Davison2010-08-211-2/+2
| | | | As suggested in bug 6839.
* Allow %VAR% environment references in daemon-config parameter values.Wayne Davison2009-10-171-2/+63
|
* Add a few new "dont compress" suffixes and improve the docs.Wayne Davison2009-09-051-1/+2
|
* Added a way for supplementary groups to be specified in the rsyncd.confWayne Davison2009-02-191-2/+2
| | | | | file. Also made explicitly-set uid/gid values no longer ignored by a daemon that was not run by a super-user.
* Made copy_section() and string_set() simpler, getting rid of aWayne Davison2009-02-061-54/+22
| | | | "FIXME" comment that we don't need to fix.
* Combine Globals and Locals into a Vars struct that parallels Defaults,Wayne Davison2009-02-051-79/+83
| | | | | shortening some code. Improve comments and make other minor cleanups. Based on a patch that Matt McCutchen posted to the mailing list.
* Added a "Defaults" structure with both globals and locals in it.Wayne Davison2009-01-181-16/+24
| | | | | | | Initialize both the Globals and Locals back to their default values when reading the config. This fixes a bug where locals set in the global section were not getting reset to their default value if the config item was removed from the file.
* A couple minor function-call tweaks.Wayne Davison2009-01-181-7/+4
|
* Renamed some typedefs:Wayne Davison2009-01-181-22/+22
| | | | | | - global -> global_vars - section -> local_vars - global_and_section -> all_vars
* Renamed sDefault to Locals.Wayne Davison2009-01-181-56/+53
|
* Added the "reverse lookup" daemon-config parameter.Matt McCutchen2009-01-151-0/+4
|
* Update the copyright year.Wayne Davison2009-01-031-1/+1
|
* Split up the ifuncs.h file into 3 .h files.Wayne Davison2008-09-011-1/+1
|
* - Don't require a daemon config &directive to use an equal sign.Wayne Davison2008-07-271-1/+1
| | | | - Improved some daemon-config error messages.
* Added a command-line override for daemon config parameters:Wayne Davison2008-07-271-1/+31
| | | | --dparam=PARAMETER=VALUE (-M PARAMETER=VALUE).
* - Got rid of unused pstring/P_GSTRING/P_SEP/P_SEPARATOR code.Wayne Davison2008-07-271-23/+11
| | | | - Made pointer-adding code a little better.
* Added &include and &merge config-file directives that allow theWayne Davison2008-07-261-2/+30
| | | | daemon's config file incorporate the contents of other files.
* Changed the module array to use an item_list structure.Wayne Davison2008-07-261-23/+13
|
* Change the references to "service" to be either "section" or "module".Wayne Davison2008-07-261-59/+59
|
* Reorder the static functions to avoid the need for forward declarations.Wayne Davison2008-07-261-106/+87
|
* Since the loadparm.c file is changing, I'm reformatting it to use theWayne Davison2008-07-261-401/+310
| | | | rsync style.
* A few minor changes, including better push_dir()/pop_dir() verbosity.Wayne Davison2008-02-151-1/+1
|
* Some daemon security improvements, including the new parametersWayne Davison2008-02-151-2/+10
| | | | "charset" and "numeric ids".
* Don't allow a slash to be specified in a module name.Wayne Davison2008-01-091-0/+5
| | | | Document the module-name limitations in rsyncd.conf.yo.
* Add a new daemon security option: "munge symlinks".Wayne Davison2007-11-271-0/+4
|
* Use FLOG instead of FERROR for config errors.Wayne Davison2007-11-221-5/+5
|
* The lp_load() function doesn't fudge the pszFname arg anymore.Wayne Davison2007-10-011-8/+1
|
* Moved inline functions from rsync.h into ifuncs.h.Wayne Davison2007-09-221-0/+1
|
* Added more suffixes to the default "dont compress" value.Wayne Davison2007-07-141-1/+4
|
* Tweaking the license text a bit more.Wayne Davison2007-07-101-2/+3
|
* Switching to GPL 3.Wayne Davison2007-07-071-3/+2
|
* Adding the --fake-super option.Wayne Davison2007-04-241-1/+5
|
* Further modifications to the copyright comment section.Wayne Davison2007-02-041-3/+2
|
* Got rid of type-casting into isFOO() and toFOO() functions byWayne Davison2006-11-091-4/+3
| | | | using static inline functions that take a signed char pointer.
* Indented the function comments with "* ".Wayne Davison2006-10-131-27/+26
|
* Removed the changes in symlink handling in non-chroot daemon mode asWayne Davison2006-10-121-4/+0
| | | | | they were not yet safe (I'll consider similar changes for the next release).
* Added the "munge symlinks" setting.Wayne Davison2006-07-031-0/+4
|
* Made "log file" and "syslog facility" per-module settings.Wayne Davison2006-06-071-9/+12
|
* 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-17/+17
| | | | | | | - 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).
* There's no need for lp_load() to check am_daemon.Wayne Davison2006-04-061-2/+1
|
* Added support for the new "outgoing chmod" daemon option.Wayne Davison2006-01-301-0/+4
|
* Added the "incoming chmod" config option.Wayne Davison2006-01-301-0/+4
|
* Tweaked some comments.Wayne Davison2005-09-191-36/+39
|
* Improved the sDefault initialization so that the prefixedWayne Davison2005-09-161-34/+34
| | | | | comments exactly match the variable names (making sure that they will sort exactly the same way as the variables).
* Added a per-module "temp dir" setting.Wayne Davison2005-09-031-0/+4
|