Support full URL, in X-Long-Polling header

This commit is contained in:
Jeff Garzik 2011-03-24 14:09:49 -04:00 committed by Jeff Garzik
parent 991a358dc9
commit 69529c3859

View file

@ -635,6 +635,15 @@ static void *longpoll_thread(void *userdata)
hdr_path = tq_pop(mythr->q, NULL); hdr_path = tq_pop(mythr->q, NULL);
if (!hdr_path) if (!hdr_path)
goto out; goto out;
/* full URL */
if (strstr(hdr_path, "://")) {
lp_url = hdr_path;
hdr_path = NULL;
}
/* absolute path, on current server */
else {
copy_start = (*hdr_path == '/') ? (hdr_path + 1) : hdr_path; copy_start = (*hdr_path == '/') ? (hdr_path + 1) : hdr_path;
if (rpc_url[strlen(rpc_url) - 1] != '/') if (rpc_url[strlen(rpc_url) - 1] != '/')
need_slash = true; need_slash = true;
@ -644,6 +653,7 @@ static void *longpoll_thread(void *userdata)
goto out; goto out;
sprintf(lp_url, "%s%s%s", rpc_url, need_slash ? "/" : "", copy_start); sprintf(lp_url, "%s%s%s", rpc_url, need_slash ? "/" : "", copy_start);
}
applog(LOG_INFO, "Long-polling activated for %s", lp_url); applog(LOG_INFO, "Long-polling activated for %s", lp_url);