Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(404)

Unified Diff: src/trusted/nonnacl_util/sel_ldr_launcher.h

Issue 10914138: Split secure command channel and untrusted application channel (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: Fixed a few nits. Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/trusted/nonnacl_util/sel_ldr_launcher.h
diff --git a/src/trusted/nonnacl_util/sel_ldr_launcher.h b/src/trusted/nonnacl_util/sel_ldr_launcher.h
index 1b96894b6ca137c69b9ccea9ad16b738027fc555..0a604d772c297deda6410db9c39cd1d5475e6d18 100644
--- a/src/trusted/nonnacl_util/sel_ldr_launcher.h
+++ b/src/trusted/nonnacl_util/sel_ldr_launcher.h
@@ -109,6 +109,9 @@ class SelLdrLauncherBase {
NaClSrpcChannel* out_app_chan);
// Returns the socket address used to connect to the sel_ldr.
+ DescWrapper* secure_socket_addr() const { return secure_socket_addr_.get(); }
+
+ // Returns the socket address used to connect to the module.
DescWrapper* socket_addr() const { return socket_addr_.get(); }
// Wraps a raw NaClDesc descriptor. If NULL is returned, caller retains
@@ -135,6 +138,7 @@ class SelLdrLauncherBase {
scoped_ptr<DescWrapperFactory> factory_;
scoped_ptr<DescWrapper> bootstrap_socket_;
// The socket address returned from sel_ldr for connects.
+ scoped_ptr<DescWrapper> secure_socket_addr_;
scoped_ptr<DescWrapper> socket_addr_;
};
« no previous file with comments | « src/trusted/manifest_name_service_proxy/manifest_proxy.c ('k') | src/trusted/nonnacl_util/sel_ldr_launcher_base.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698