@@ -833,7 +833,7 @@ htcpTstReply(htcpDataHeader * dhdr, StoreEntry * e, htcpSpecifier * spec, Ip::Ad
833833 hdr.putInt (Http::HdrType::AGE, 0 );
834834 MemBuf mb;
835835 mb.init ();
836- hdr.packInto (&mb);
836+ hdr.packInto (&mb, Security::MaskSensitiveInfo::off );
837837 stuff.D .resp_hdrs = xstrdup (mb.buf );
838838 stuff.D .respHdrsSz = mb.contentSize ();
839839 debugs (31 , 3 , " htcpTstReply: resp_hdrs = {" << stuff.D .resp_hdrs << " }" );
@@ -846,7 +846,7 @@ htcpTstReply(htcpDataHeader * dhdr, StoreEntry * e, htcpSpecifier * spec, Ip::Ad
846846 if (e && e->lastModified () > -1 )
847847 hdr.putTime (Http::HdrType::LAST_MODIFIED, e->lastModified ());
848848
849- hdr.packInto (&mb);
849+ hdr.packInto (&mb, Security::MaskSensitiveInfo::off );
850850
851851 stuff.D .entity_hdrs = xstrdup (mb.buf );
852852 stuff.D .entityHdrsSz = mb.contentSize ();
@@ -872,7 +872,7 @@ htcpTstReply(htcpDataHeader * dhdr, StoreEntry * e, htcpSpecifier * spec, Ip::Ad
872872 }
873873#endif /* USE_ICMP */
874874
875- hdr.packInto (&mb);
875+ hdr.packInto (&mb, Security::MaskSensitiveInfo::off );
876876 stuff.D .cache_hdrs = xstrdup (mb.buf );
877877 stuff.D .cacheHdrsSz = mb.contentSize ();
878878 debugs (31 , 3 , " htcpTstReply: cache_hdrs = {" << stuff.D .cache_hdrs << " }" );
@@ -1534,7 +1534,7 @@ htcpQuery(StoreEntry * e, HttpRequest * req, CachePeer * p)
15341534 HttpStateData::httpBuildRequestHeader (req, e, nullptr , &hdr, p, flags);
15351535 MemBuf mb;
15361536 mb.init ();
1537- hdr.packInto (&mb);
1537+ hdr.packInto (&mb, Security::MaskSensitiveInfo::off );
15381538 hdr.clean ();
15391539 stuff.S .req_hdrs = mb.buf ;
15401540 pktlen = htcpBuildPacket (pkt, sizeof (pkt), &stuff);
@@ -1588,7 +1588,7 @@ htcpClear(StoreEntry * e, HttpRequest * req, const HttpRequestMethod &, CachePee
15881588 if (reason != HTCP_CLR_INVALIDATION) {
15891589 HttpStateData::httpBuildRequestHeader (req, e, nullptr , &hdr, p, flags);
15901590 mb.init ();
1591- hdr.packInto (&mb);
1591+ hdr.packInto (&mb, Security::MaskSensitiveInfo::off );
15921592 hdr.clean ();
15931593 stuff.S .req_hdrs = mb.buf ;
15941594 } else {
0 commit comments