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

Unified Diff: runtime/bin/io_natives.cc

Issue 85993002: Add UDP support to dart:io (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Addressed first round of comments Created 7 years, 1 month 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
« no previous file with comments | « no previous file | runtime/bin/socket.h » ('j') | runtime/bin/socket.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/io_natives.cc
diff --git a/runtime/bin/io_natives.cc b/runtime/bin/io_natives.cc
index 8a182d8afe50cfe7364775c362240e68ed515d39..9c7bd2b547710dad0421fa719e3392d7fc4711da 100644
--- a/runtime/bin/io_natives.cc
+++ b/runtime/bin/io_natives.cc
@@ -59,15 +59,21 @@ namespace bin {
V(ServerSocket_CreateBindListen, 5) \
V(ServerSocket_Accept, 2) \
V(Socket_CreateConnect, 3) \
+ V(Socket_CreateBindDatagram, 4) \
V(Socket_Available, 1) \
V(Socket_Read, 2) \
+ V(Socket_RecvFrom, 1) \
V(Socket_WriteList, 4) \
+ V(Socket_SendTo, 6) \
V(Socket_GetPort, 1) \
V(Socket_GetRemotePeer, 1) \
V(Socket_GetError, 1) \
V(Socket_GetStdioHandle, 2) \
V(Socket_GetType, 1) \
- V(Socket_SetOption, 3) \
+ V(Socket_GetOption, 3) \
+ V(Socket_SetOption, 4) \
+ V(Socket_JoinMulticast, 3) \
+ V(Socket_LeaveMulticast, 3) \
V(Socket_SetSocketId, 2) \
V(Stdin_ReadByte, 1) \
V(Stdin_SetEchoMode, 2) \
« no previous file with comments | « no previous file | runtime/bin/socket.h » ('j') | runtime/bin/socket.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698