search for: disable_slp

Displaying 1 result from an estimated 1 matches for "disable_slp".

Did you mean: disable_sep
2009 Apr 22
1
[PATCH] allow to disable SLP with runtime option
...============================================================= --- rsync-3.0.6pre1.orig/loadparm.c 2009-04-22 12:47:39.000000000 +0200 +++ rsync-3.0.6pre1/loadparm.c 2009-04-22 13:30:39.000000000 +0200 @@ -111,6 +111,7 @@ typedef struct int rsync_port; #ifdef HAVE_LIBSLP int slp_refresh; + BOOL disable_slp; #endif } global; @@ -305,6 +306,7 @@ static struct parm_struct parm_table[] = {"port", P_INTEGER,P_GLOBAL,&Globals.rsync_port, NULL,0}, #ifdef HAVE_LIBSLP {"slp refresh", P_INTEGER,P_GLOBAL,&Globals.slp_refresh, NULL,0}, + {&qu...