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

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: Fix Windows build Created 7 years 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 | « runtime/bin/eventhandler_win.cc ('k') | runtime/bin/isolate_data.h » ('j') | no next file with comments »
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..6ac1c16eaf48d6392837d8f2b8edbe0fd3a19564 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, 4) \
+ V(Socket_LeaveMulticast, 4) \
V(Socket_SetSocketId, 2) \
V(Stdin_ReadByte, 1) \
V(Stdin_SetEchoMode, 2) \
« no previous file with comments | « runtime/bin/eventhandler_win.cc ('k') | runtime/bin/isolate_data.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698