Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 181886 | Differences between
and this patch

Collapse All | Expand All

(-)resin-3.0.23.vanilla/modules/c/src/apache2/mod_caucho.c (+13 lines)
Lines 391-396 Link Here
391
}
391
}
392
392
393
/**
393
/**
394
 * Parse the CauchoDisableStickySessions configuration in the apache config file.
395
 */
396
static const char cse_disable_sticky_sessions(cmd_parms *cmd, void *pconfig, int on)
397
{
398
  config_t *config = pconfig;
399
  config->disable_sticky_sessions = on;
400
  return 0;
401
}
402
403
/**
394
 * Parse the CauchoBackup configuration in the apache config file.
404
 * Parse the CauchoBackup configuration in the apache config file.
395
 */
405
 */
396
static const char *
406
static const char *
Lines 1215-1220 Link Here
1215
    AP_INIT_TAKE1("CauchoConfigCacheDirectory", resin_config_cache_command,
1225
    AP_INIT_TAKE1("CauchoConfigCacheDirectory", resin_config_cache_command,
1216
		  NULL, RSRC_CONF|ACCESS_CONF,
1226
		  NULL, RSRC_CONF|ACCESS_CONF,
1217
		  "Configures the saved configuration file."),
1227
		  "Configures the saved configuration file."),
1228
    AP_INIT_FLAG("CauchoDisableStickySessions", cse_disable_sticky_sessions,
1229
		  NULL, RSRC_CONF,
1230
		  "Disable sticky sessions."),
1218
    {NULL}
1231
    {NULL}
1219
};
1232
};
1220
1233

Return to bug 181886