Displaying 4 results from an estimated 4 matches for "source_list".
2001 Nov 20
2
patch to enable faster mirroring of large filesystems
...)
{
--- main.c.orig Fri Nov 2 14:48:47 2001
+++ main.c Thu Nov 8 18:01:37 2001
@@ -23,6 +23,8 @@
struct stats stats;
+static FILE *src_list_fp;
+
extern int verbose;
@@ -480,11 +482,13 @@
extern int cvs_exclude;
extern int delete_mode;
extern int delete_excluded;
+ extern int source_list;
if (cvs_exclude)
add_cvs_excludes();
if (delete_mode && !delete_excluded)
send_exclude_list(f_out);
- flist = send_file_list(f_out,argc,argv);
+ flist = (source_list ? send_file_list_fp(f_out,src_list_fp) :
+ send_file_list(f_out,argc,argv));
if (verbose > 3)...
2003 Jan 14
4
specifying a list of files to transfer
...+ flist = (src_list_fp ?
+ send_file_list_fp(f_out,src_list_fp) :
+ send_file_list(f_out,argc,argv));
if (verbose > 3)
rprintf(FINFO,"file list sent\n");
@@ -836,6 +840,7 @@
extern int dry_run;
extern int am_daemon;
extern int am_server;
+ extern int source_list;
int ret;
extern int write_batch;
int orig_argc;
@@ -872,6 +877,14 @@
/* FIXME: We ought to call the same error-handling
* code here, rather than relying on getopt. */
option_error();
+ exit_cleanup(RERR_SYNTAX);
+ }
+
+ if (source_list &&
+...
2013 Oct 07
4
Feature request: FQDN Host match
Hello!
I'm hoping that Gmail won't HTML format this mail so that I'll get flamed :)
Anyway, my question relates to ssh_config. The problem I find is that
the Host pattern is only applied to the argument given on the command
line, as outlined in the man page:
"The host is the hostname argument given on the command line (i.e. the
name is not converted to a canonicalized host name
2006 Jan 17
1
How to loop a Vobis sound ?
...at *p3f) { alGetSourcefv (m_id, eParam, p3f); }
Source ();
virtual ~Source ();
private:
void Release ();
ALuint m_id; // OpanAL id
Buffer *m_pBuf; // associated buffer.
int m_iRepeats; // for double buffering stream
};
typedef std::vector <Source*> SOURCE_LIST;
}
// ------------- Source.cpp -------------------
Source::Source ()
{
m_pBuf = NULL;
m_iRepeats = 0;
// generate one source id from OpenAL.
alGenSources (1, &m_id);
assert (alGetError() == AL_NO_ERROR);
// set a default position
// initial listener's p...