/* Copyright 2013 The Chromium Authors * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ /* From ppb_tcp_socket.idl modified Mon Dec 8 16:50:44 2014. */ #ifndef PPAPI_C_PPB_TCP_SOCKET_H_ #define PPAPI_C_PPB_TCP_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_macros.h" #include "ppapi/c/pp_resource.h" #include "ppapi/c/pp_stdint.h" #include "ppapi/c/pp_var.h" #define PPB_TCPSOCKET_INTERFACE_1_0 … #define PPB_TCPSOCKET_INTERFACE_1_1 … #define PPB_TCPSOCKET_INTERFACE_1_2 … #define PPB_TCPSOCKET_INTERFACE … /** * @file * This file defines the <code>PPB_TCPSocket</code> interface. */ /** * @addtogroup Enums * @{ */ /** * Option names used by <code>SetOption()</code>. */ PP_TCPSocket_Option; PP_COMPILE_ASSERT_SIZE_IN_BYTES(…); /** * @} */ /** * @addtogroup Interfaces * @{ */ /** * The <code>PPB_TCPSocket</code> interface provides TCP socket operations. * * Permissions: Apps permission <code>socket</code> with subrule * <code>tcp-connect</code> is required for <code>Connect()</code>; subrule * <code>tcp-listen</code> is required for <code>Listen()</code>. * For more details about network communication permissions, please see: * http://developer.chrome.com/apps/app_network.html */ struct PPB_TCPSocket_1_2 { … }; PPB_TCPSocket; struct PPB_TCPSocket_1_0 { … }; struct PPB_TCPSocket_1_1 { … }; /** * @} */ #endif /* PPAPI_C_PPB_TCP_SOCKET_H_ */