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

Unified Diff: ppapi/c/private/ppb_flash_udp_socket.h

Issue 7745005: Initial work for UDP Pepper API (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: A few more changes after self-review Created 9 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: ppapi/c/private/ppb_flash_udp_socket.h
diff --git a/ppapi/c/private/ppb_flash_udp_socket.h b/ppapi/c/private/ppb_flash_udp_socket.h
new file mode 100644
index 0000000000000000000000000000000000000000..1b4ab5e12f09798a0e0a1e3861f3ea93544966f2
--- /dev/null
+++ b/ppapi/c/private/ppb_flash_udp_socket.h
@@ -0,0 +1,55 @@
+// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef PPAPI_C_PRIVATE_PPB_FLASH_UDP_SOCKET_H_
+#define PPAPI_C_PRIVATE_PPB_FLASH_UDP_SOCKET_H_
+
+#include "ppapi/c/pp_bool.h"
+#include "ppapi/c/pp_completion_callback.h"
+#include "ppapi/c/pp_instance.h"
+#include "ppapi/c/pp_resource.h"
+#include "ppapi/c/pp_stdint.h"
+#include "ppapi/c/private/ppb_flash_tcp_socket.h" // for PP_Flash_NetAddress
+
+#define PPB_FLASH_UDPSOCKET_INTERFACE "PPB_Flash_UDPSocket;0.1"
+
+struct PPB_Flash_UDPSocket {
+ PP_Resource (*Create)(PP_Instance instance, int32_t family);
yzshen1 2011/09/17 02:10:07 I read pepper_message_filter and found that |famil
mtilburg 2011/09/21 01:46:43 You're right... CreateSocket in udp_socket_libeven
+
+ PP_Bool (*IsFlashUDPSocket)(PP_Resource resource);
+
+ // Creates a socket and binds to the address given by |addr|.
+ int32_t (*Bind)(PP_Resource udp_socket,
+ const struct PP_Flash_NetAddress* addr,
+ struct PP_CompletionCallback callback);
+
+ // Performs a non-blocking recvfrom call on socket.
+ // Bind must be called first. |callback| is invoked when recvfrom
+ // reads data. You must call GetRecvFromAddress to recover the
+ // address the data was retrieved from.
+ int32_t (*RecvFrom)(PP_Resource udp_socket,
+ char* buffer,
+ int32_t num_bytes,
+ struct PP_CompletionCallback callback);
+
+ // Upon successful completion of RecvFrom, the address that the data
+ // was received from is stored in |addr|.
+ PP_Bool (*GetRecvFromAddress)(PP_Resource udp_socket,
+ struct PP_Flash_NetAddress* addr);
+
+ // Performs a non-blocking sendto call on the socket created and
+ // bound(has already called Bind). The callback |callback| is
+ // invoked when sendto completes.
+ int32_t (*SendTo)(PP_Resource udp_socket,
+ const char* buffer,
+ int32_t num_bytes,
+ const struct PP_Flash_NetAddress* addr,
+ struct PP_CompletionCallback callback);
+
+ // Cancels all pending reads and writes, and closes the socket.
+ void (*Disconnect)(PP_Resource udp_socket);
yzshen1 2011/09/17 02:10:07 Does it make sense to use Close instead of Disconn
mtilburg 2011/09/21 01:46:43 Yes. Changed
+};
+
+#endif // PPAPI_C_PRIVATE_PPB_FLASH_UDP_SOCKET_H_
+

Powered by Google App Engine
This is Rietveld 408576698