search for: lp_comment

Displaying 7 results from an estimated 7 matches for "lp_comment".

2004 Feb 12
1
[PATCH] write only
...P_BOOL, P_LOCAL, &sDefault.list, NULL, 0}, {"use chroot", P_BOOL, P_LOCAL, &sDefault.use_chroot, NULL, 0}, {"ignore nonreadable",P_BOOL, P_LOCAL, &sDefault.ignore_nonreadable, NULL, 0}, @@ -353,6 +356,7 @@ FN_LOCAL_STRING(lp_comment, comment) FN_LOCAL_STRING(lp_path, path) FN_LOCAL_STRING(lp_lock_file, lock_file) FN_LOCAL_BOOL(lp_read_only, read_only) +FN_LOCAL_BOOL(lp_write_only, write_only) FN_LOCAL_BOOL(lp_list, list) FN_LOCAL_BOOL(lp_use_chroot, use_chroot) FN_LOCAL_BOOL(lp_transfer_logging, transfer_logging) --- rsy...
2002 Jun 18
2
rsyncd + scripting
Hey all, Like a lot of folks, I use rsync to pull content out to production web servers. Tastes great, less filling. Here's what I'd like to be able to do: Sometimes a web tree is not ready to sync, for whatever reason. I have many modules available, so stopping ryncd is not an option. I'd like to be able to tell rsync in daemon mode "this particular module is not available at
2004 Sep 28
1
[Patch] rsync-2.6.2: Allow 'port = N' in rsyncd.conf
..._STRING(lp_socket_options, &Globals.socket_options) FN_GLOBAL_INTEGER(lp_syslog_facility, &Globals.syslog_facility) FN_GLOBAL_INTEGER(lp_max_verbosity, &Globals.max_verbosity) +FN_GLOBAL_INTEGER(lp_rsync_port, &Globals.rsync_port) FN_LOCAL_STRING(lp_name, name) FN_LOCAL_STRING(lp_comment, comment) diff --unified -r rsync-2.6.2/main.c rsync-dmn/main.c --- rsync-2.6.2/main.c Mon Feb 9 22:54:47 2004 +++ rsync-dmn/main.c Tue Sep 28 12:58:28 2004 @@ -57,6 +57,7 @@ extern char *rsync_path; extern char *shell_cmd; extern struct file_list *batch_flist; +extern char* config_file; /...
2011 Nov 28
0
RFC: [PATCH] Add TCP congestion control and Diffserv options
...xclude_from, NULL,0}, {"exclude", P_STRING, P_LOCAL, &Vars.l.exclude, NULL,0}, @@ -454,6 +460,7 @@ FN_GLOBAL_INTEGER(lp_rsync_port, &Vars.g.rsync_port) FN_LOCAL_STRING(lp_auth_users, auth_users) FN_LOCAL_STRING(lp_charset, charset) FN_LOCAL_STRING(lp_comment, comment) +FN_LOCAL_STRING(lp_congestion_alg, congestion_alg) FN_LOCAL_STRING(lp_dont_compress, dont_compress) FN_LOCAL_STRING(lp_exclude, exclude) FN_LOCAL_STRING(lp_exclude_from, exclude_from) @@ -481,6 +488,7 @@ FN_LOCAL_INTEGER(lp_max_connections, max_connections) FN_LOCAL_INTEGER(lp_max_ve...
2001 Nov 20
2
rsync server over SSH [includes code patches]
...imeout = lp_timeout(i); } ! start_server(fd, fd, argc, argp); return 0; } --- 377,383 ---- io_timeout = lp_timeout(i); } ! start_server(f_in, f_out, argc, argp); return 0; } *************** *** 351,376 **** io_printf(fd, "%-15s\t%s\n", lp_name(i), lp_comment(i)); } ! /* this is called when a socket connection is established to a client and we want to start talking. The setup of the system is done from here */ ! static int start_daemon(int fd) { char line[200]; char *motd; int i = -1; extern char *config_file; extern int...
2007 Sep 22
0
rsync build on IA64 using icc
..."chdir %s failed\n", ^ clientserver.c(665): remark #1599: declaration hides parameter "i" (declared at line 271) int i; ^ clientserver.c(718): remark #981: operands are evaluated in unspecified order io_printf(fd, "%-15s\t%s\n", lp_name(i), lp_comment(i)); ^ clientserver.c(718): remark #981: operands are evaluated in unspecified order io_printf(fd, "%-15s\t%s\n", lp_name(i), lp_comment(i)); ^ /opt/intel/compilo_9/l_cc_c_9.1.042/bin/icc -c99 -I. -I. -g -O2 -DHAVE_CONFIG_H -Wall -...
2003 Dec 01
0
No subject
...service; pstring net_name; pstring remark; uint32 type; - pstrcpy(net_name, lp_servicename(snum)); + strncpy(service, lp_servicename(snum), + (get_remote_arch() == RA_WIN2K) ? 127 : 12); + pstrcpy(net_name, service); pstrcpy(remark, lp_comment(snum)); - pstring_sub(remark,"%S",lp_servicename(snum)); + pstring_sub(remark,"%S", service); len_net_name = strlen(net_name); /* work out the share type */ ----- Cut Here ----- ----- TAKAHASHI Motonobu mailto:monyo@samba.gr.jp S...