X-Git-Url: http://git.dolda2000.com/gitweb/?a=blobdiff_plain;f=daemon%2Fclient.c;h=47ac9de974961dbc009f0dd0d805a00596f9fb25;hb=d9f89ef5daa6375fc4ff257826fa39562fbe3ac3;hp=7cdfbe33b43971dfc51df123766e5f619cca9c60;hpb=038be21c8d00e1d2de2a84e1663714a38ef6d60b;p=doldaconnect.git diff --git a/daemon/client.c b/daemon/client.c index 7cdfbe3..47ac9de 100644 --- a/daemon/client.c +++ b/daemon/client.c @@ -60,9 +60,20 @@ static void writehashcache(int now); static struct configvar myvars[] = { + /** The default nick name to use. The nickname can also be + * specified for individual hubs, overriding this setting. */ {CONF_VAR_STRING, "defnick", {.str = L"DoldaConnect user"}}, + /** When scanning shares, this bitmask is consulted for every + * regular file. Unless the file's mode has the bits specified by + * this mask set, it will not be shared. */ {CONF_VAR_INT, "scanfilemask", {.num = 0004}}, + /** When scanning shares, this bitmask is consulted for every + * directory encountered. Unless the directory's mode has the bits + * specified by this mask set, it will be ignored and any files + * under it will not be shared. */ {CONF_VAR_INT, "scandirmask", {.num = 0005}}, + /** The filename to use for the hash cache (see the FILES section + * for more information). */ {CONF_VAR_STRING, "hashcache", {.str = L"dc-hashcache"}}, {CONF_VAR_END} };