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

Unified Diff: native_client_sdk/src/libraries/nacl_io/mount_node_udp.h

Issue 26703008: [NaCl SDK] nacl_io: Add support for non-blocking connect/accept (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 2 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: native_client_sdk/src/libraries/nacl_io/mount_node_udp.h
diff --git a/native_client_sdk/src/libraries/nacl_io/mount_node_udp.h b/native_client_sdk/src/libraries/nacl_io/mount_node_udp.h
index d28f1a9cda0e6f613d34756a5fb1f6be112a0bc6..95f28897d0c96296117552df38b7c865343bc2fb 100644
--- a/native_client_sdk/src/libraries/nacl_io/mount_node_udp.h
+++ b/native_client_sdk/src/libraries/nacl_io/mount_node_udp.h
@@ -32,7 +32,9 @@ class MountNodeUDP : public MountNodeSocket {
virtual void QueueOutput();
virtual Error Bind(const struct sockaddr* addr, socklen_t len);
- virtual Error Connect(const struct sockaddr* addr, socklen_t len);
+ virtual Error Connect(const HandleAttr& attr,
+ const struct sockaddr* addr,
+ socklen_t len);
protected:
virtual Error Recv_Locked(void* buf,

Powered by Google App Engine
This is Rietveld 408576698