Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
* modules/proxy/mod_proxy_balancer.c (balancer_display_page):
  Include nonce in XML output.

PR: 63074
Submitted by: Federico Mennite <federico.mennite lifeware.ch>

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1887192 13f79535-47bb-0310-9956-ffa450edef68
(cherry picked from commit 2d78b26)
  • Loading branch information
notroj committed Dec 18, 2025
commit 35671ac4d9c6a7905440ace6483da80fe63802e5
2 changes: 2 additions & 0 deletions changes-entries/pr63074.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
*) mod_proxy_balancer: Include nonce in XML output. PR 63074.
Federico Mennite <federico.mennite lifeware.ch>
1 change: 1 addition & 0 deletions modules/proxy/mod_proxy_balancer.c
Original file line number Diff line number Diff line change
Expand Up @@ -1456,6 +1456,7 @@ static void balancer_display_page(request_rec *r, proxy_server_conf *conf,
ap_rputs(" <httpd:balancer>\n", r);
/* Start proxy_balancer */
ap_rvputs(r, " <httpd:name>", balancer->s->name, "</httpd:name>\n", NULL);
ap_rvputs(r, " <httpd:nonce>", balancer->s->nonce, "</httpd:nonce>\n", NULL);
if (*balancer->s->sticky) {
ap_rvputs(r, " <httpd:stickysession>", ap_escape_html(r->pool, balancer->s->sticky),
"</httpd:stickysession>\n", NULL);
Expand Down