Skip to content
Closed
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
2 changes: 2 additions & 0 deletions bazel/envoy_library.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,10 @@ def envoy_cc_library(
deps = deps + [envoy_external_dep_path(dep) for dep in external_deps] + [
repository + "//include/envoy/common:base_includes",
repository + "//source/common/common:fmt_lib",
envoy_external_dep_path("abseil_btree"),
envoy_external_dep_path("abseil_flat_hash_map"),
envoy_external_dep_path("abseil_flat_hash_set"),
envoy_external_dep_path("abseil_inlined_vector"),
envoy_external_dep_path("abseil_strings"),
envoy_external_dep_path("spdlog"),
envoy_external_dep_path("fmtlib"),
Expand Down
4 changes: 4 additions & 0 deletions bazel/repositories.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -438,6 +438,10 @@ def _com_google_absl():
name = "absl-base",
actual = "@com_google_absl//absl/base",
)
native.bind(
name = "abseil_btree",
actual = "@com_google_absl//absl/container:btree",
)
native.bind(
name = "abseil_flat_hash_map",
actual = "@com_google_absl//absl/container:flat_hash_map",
Expand Down
3 changes: 2 additions & 1 deletion include/envoy/http/header_map.h
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,8 @@ class HeaderMap {
virtual uint64_t byteSize() const PURE;

/**
* Get a header by key.
* Get the first instance of a header by key. Subsequent entries for the same key are ignored.
*
* @param key supplies the header key.
* @return the header entry if it exists otherwise nullptr.
*/
Expand Down
Loading