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.1.1.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 1278-1283 Link Here
1278
    AP_INIT_TAKE1("CauchoConfigCacheDirectory", resin_config_cache_command,
1288
    AP_INIT_TAKE1("CauchoConfigCacheDirectory", resin_config_cache_command,
1279
		  NULL, RSRC_CONF|ACCESS_CONF,
1289
		  NULL, RSRC_CONF|ACCESS_CONF,
1280
		  "Configures the saved configuration file."),
1290
		  "Configures the saved configuration file."),
1291
    AP_INIT_FLAG("CauchoDisableStickySessions", cse_disable_sticky_sessions,
1292
		  NULL, RSRC_CONF,
1293
		  "Disable sticky sessions."),
1281
    {NULL}
1294
    {NULL}
1282
};
1295
};
1283
1296

Return to bug 181886