summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJérôme Loyet <fat@php.net>2010-01-11 18:04:28 +0000
committerJérôme Loyet <fat@php.net>2010-01-11 18:04:28 +0000
commit449756ef317e311cb0b5cd1eebd008f5bcb66327 (patch)
treeff855b98aedeacfce8a09d32801c4d477f897f7a
parentdd9c6a30fe23dd03b0206cfe7d4dd35cb14d3a02 (diff)
downloadphp-git-449756ef317e311cb0b5cd1eebd008f5bcb66327.tar.gz
revert commit 293414
-rw-r--r--sapi/fpm/fpm/fpm_conf.c63
-rw-r--r--sapi/fpm/fpm/fpm_conf.h4
2 files changed, 0 insertions, 67 deletions
diff --git a/sapi/fpm/fpm/fpm_conf.c b/sapi/fpm/fpm/fpm_conf.c
index cb5b817c30..0d0832904a 100644
--- a/sapi/fpm/fpm/fpm_conf.c
+++ b/sapi/fpm/fpm/fpm_conf.c
@@ -297,8 +297,6 @@ int fpm_worker_pool_config_free(struct fpm_worker_pool_config_s *wpc) /* {{{ */
free(wpc->pm->status);
free(wpc->pm->ping);
free(wpc->pm->pong);
- free(wpc->sticky_cookie);
- free(wpc->sticky_route);
if (wpc->listen_options) {
free(wpc->listen_options->owner);
free(wpc->listen_options->group);
@@ -349,9 +347,6 @@ static struct xml_conf_section xml_section_fpm_worker_pool_config = {
{ XML_CONF_SCALAR, "rlimit_files", &xml_conf_set_slot_integer, offsetof(struct fpm_worker_pool_config_s, rlimit_files) },
{ XML_CONF_SCALAR, "rlimit_core", &fpm_conf_set_rlimit_core, 0 },
{ XML_CONF_SCALAR, "max_requests", &xml_conf_set_slot_integer, offsetof(struct fpm_worker_pool_config_s, max_requests) },
- { XML_CONF_SCALAR, "sticky", &xml_conf_set_slot_boolean, offsetof(struct fpm_worker_pool_config_s, sticky) },
- { XML_CONF_SCALAR, "sticky_cookie", &xml_conf_set_slot_string, offsetof(struct fpm_worker_pool_config_s, sticky_cookie) },
- { XML_CONF_SCALAR, "sticky_route", &xml_conf_set_slot_string, offsetof(struct fpm_worker_pool_config_s, sticky_route) },
{ XML_CONF_SCALAR, "catch_workers_output", &fpm_conf_set_catch_workers_output, 0 },
{ XML_CONF_SUBSECTION, "pm", &fpm_conf_set_pm_subsection, offsetof(struct fpm_worker_pool_config_s, pm) },
{ 0, 0, 0, 0 }
@@ -480,64 +475,6 @@ static int fpm_conf_process_all_pools() /* {{{ */
close(fd);
}
}
- if (wp->config->sticky) {
- char *cookie = wp->config->sticky_cookie;
- char *route = wp->config->sticky_route;
- int i;
-
- if (!cookie) {
- wp->config->sticky_cookie = strdup("FPMCOOKIE");
- } else {
- if (strlen(cookie) < 2) {
- zlog(ZLOG_STUFF, ZLOG_ERROR, "[pool %s] the sticky cookie '%s' is not long enough", wp->config->name, cookie);
- return(-1);
- }
-
- for (i=0; i<strlen(cookie); i++) {
- if (!isalnum(cookie[i])) {
- zlog(ZLOG_STUFF, ZLOG_ERROR, "[pool %s] the sticky cookie '%s' must containt only the alphanum characters", wp->config->name, cookie);
- return(-1);
- }
- }
- }
-
- if (!route) {
- char *hostname;
- hostname = malloc(sizeof(char) * (FPM_CONF_MAX_HOSTNAME_LENGTH + 1));
- if (!hostname) {
- zlog(ZLOG_STUFF, ZLOG_ERROR, "[pool %s] sticky: unable to malloc memory for hostname", wp->config->name);
- return(-1);
- }
- if (gethostname(hostname, FPM_CONF_MAX_HOSTNAME_LENGTH) != 0) {
- zlog(ZLOG_STUFF, ZLOG_ERROR, "[pool %s] sticky: unable to retrieve hostname", wp->config->name);
- return(-1);
- }
- hostname[FPM_CONF_MAX_HOSTNAME_LENGTH] = '\0';
- wp->config->sticky_route = strdup(hostname);
- zlog(ZLOG_STUFF, ZLOG_NOTICE, "[pool %s] the sticky route has been set to the local hostname '%s'", wp->config->name, wp->config->sticky_route);
- free(hostname);
- } else {
- if (strlen(route) < 2) {
- zlog(ZLOG_STUFF, ZLOG_ERROR, "[pool %s] the sticky route '%s' is not long enough", wp->config->name, route);
- return(-1);
- }
-
- for (i=0; i<strlen(route); i++) {
- if (!isalnum(route[i])) {
- zlog(ZLOG_STUFF, ZLOG_ERROR, "[pool %s] the sticky route '%s' must containt only the alphanum characters", wp->config->name, route);
- return(-1);
- }
- }
- }
-zlog(ZLOG_STUFF, ZLOG_NOTICE, "[pool %s] sticky is set to %s=%s", wp->config->name, wp->config->sticky_cookie, wp->config->sticky_route);
- } else {
- if (wp->config->sticky_route) {
- free(wp->config->sticky_route);
- }
- if (wp->config->sticky_cookie) {
- free(wp->config->sticky_cookie);
- }
- }
if (wp->config->pm->ping && *wp->config->pm->ping) {
char *ping = wp->config->pm->ping;
diff --git a/sapi/fpm/fpm/fpm_conf.h b/sapi/fpm/fpm/fpm_conf.h
index 48bee846f7..486319a737 100644
--- a/sapi/fpm/fpm/fpm_conf.h
+++ b/sapi/fpm/fpm/fpm_conf.h
@@ -6,7 +6,6 @@
#define FPM_CONF_H 1
#define FPM_CONF_MAX_PONG_LENGTH 64
-#define FPM_CONF_MAX_HOSTNAME_LENGTH 255
struct key_value_s;
@@ -65,9 +64,6 @@ struct fpm_worker_pool_config_s {
int max_requests;
int rlimit_files;
int rlimit_core;
- int sticky;
- char *sticky_cookie;
- char *sticky_route;
unsigned catch_workers_output:1;
};