Skip to content

doc: DEP0066 is slightly incorrect #37641

Closed
@simov

Description

@simov

📗 API Reference Docs Problem

  • Version: v15.11.0
  • Subsystem: http.ClientRequest

Location

Affected URL(s):

Description

DEP0066 implies that using OutgoingMessage.prototype.getHeaderNames() is equivalent to the now deprecated OutgoingMessage.prototype._headerNames property which is not the case.

OutgoingMessage.prototype._headerNames contains a mapping from lowercase to the exact header names that were sent with the request:

{authorization: "Authorization", host: "Host"}

Where OutgoingMessage.prototype.getHeaderNames() returns only lowercase names.

The now deprecated _headerNames property is useful in http debug logging modules that print the exact header names being sent, as some servers are still picky about those. Not having access to the actual header names will make debugging harder, assuming node still sends the headers as they are sent through the http.request method.

Besides the documentation being misleading about this I'd like to know if there is a way to access the headers being sent going forward, since _headerNames is now deprecated.

Metadata

Metadata

Assignees

No one assigned

    Labels

    docIssues and PRs related to the documentations.feature requestIssues that request new features to be added to Node.js.good first issueIssues that are suitable for first-time contributors.httpIssues or PRs related to the http subsystem.

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions