-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Address review commments - squash before merge
Signed-off-by: Jarno Rajahalme <jarno@isovalent.com>
- Loading branch information
1 parent
2b31a2e
commit ab6a82e
Showing
13 changed files
with
65 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,49 +1,26 @@ | ||
load( | ||
"@envoy//bazel:envoy_build_system.bzl", | ||
"envoy_cc_library", | ||
"envoy_package", | ||
) | ||
|
||
licenses(["notice"]) # Apache 2 | ||
|
||
envoy_package() | ||
|
||
envoy_cc_library( | ||
cc_library( | ||
name = "main_entry_lib", | ||
srcs = ["main.cc"], | ||
deps = [ | ||
"privileged_service_server_lib", | ||
], | ||
repository = "@envoy", | ||
visibility = ["//visibility:public"], | ||
) | ||
|
||
envoy_cc_library( | ||
cc_library( | ||
name = "privileged_service_protocol", | ||
srcs = ["privileged_service_protocol.cc"], | ||
hdrs = ["privileged_service_protocol.h"], | ||
repository = "@envoy", | ||
deps = [ | ||
"@envoy//envoy/api:os_sys_calls_interface", | ||
], | ||
visibility = ["//visibility:public"], | ||
) | ||
|
||
envoy_cc_library( | ||
cc_library( | ||
name = "privileged_service_server_lib", | ||
hdrs = ["privileged_service_server.h"], | ||
srcs = ["privileged_service_server.cc"], | ||
repository = "@envoy", | ||
deps = [ | ||
"privileged_service_protocol", | ||
], | ||
) | ||
|
||
envoy_cc_library( | ||
name = "privileged_service_client_lib", | ||
hdrs = ["privileged_service_client.h"], | ||
srcs = ["privileged_service_client.cc"], | ||
repository = "@envoy", | ||
deps = [ | ||
"privileged_service_protocol", | ||
"@envoy//source/common/singleton:threadsafe_singleton", | ||
], | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters