1// Copyright (c) 2012 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef PPAPI_THUNK_PPB_TCP_SOCKET_PRIVATE_API_H_
6#define PPAPI_THUNK_PPB_TCP_SOCKET_PRIVATE_API_H_
7
8#include "base/memory/ref_counted.h"
9#include "ppapi/c/private/ppb_tcp_socket_private.h"
10#include "ppapi/thunk/ppapi_thunk_export.h"
11
12namespace ppapi {
13
14class TrackedCallback;
15
16namespace thunk {
17
18class PPAPI_THUNK_EXPORT PPB_TCPSocket_Private_API {
19 public:
20  virtual ~PPB_TCPSocket_Private_API() {}
21
22  virtual int32_t Connect(const char* host,
23                          uint16_t port,
24                          scoped_refptr<TrackedCallback> callback) = 0;
25  virtual int32_t ConnectWithNetAddress(
26      const PP_NetAddress_Private* addr,
27      scoped_refptr<TrackedCallback> callback) = 0;
28  virtual PP_Bool GetLocalAddress(PP_NetAddress_Private* local_addr) = 0;
29  virtual PP_Bool GetRemoteAddress(PP_NetAddress_Private* remote_addr) = 0;
30  virtual int32_t SSLHandshake(const char* server_name,
31                               uint16_t server_port,
32                               scoped_refptr<TrackedCallback> callback) = 0;
33  virtual PP_Resource GetServerCertificate() = 0;
34  virtual PP_Bool AddChainBuildingCertificate(PP_Resource certificate,
35                                              PP_Bool trusted) = 0;
36  virtual int32_t Read(char* buffer,
37                       int32_t bytes_to_read,
38                       scoped_refptr<TrackedCallback> callback) = 0;
39  virtual int32_t Write(const char* buffer,
40                        int32_t bytes_to_write,
41                        scoped_refptr<TrackedCallback> callback) = 0;
42  virtual void Disconnect() = 0;
43  virtual int32_t SetOption(PP_TCPSocketOption_Private name,
44                            const PP_Var& value,
45                            scoped_refptr<TrackedCallback> callback) = 0;
46};
47
48}  // namespace thunk
49}  // namespace ppapi
50
51#endif  // PPAPI_THUNK_PPB_TCP_SOCKET_PRIVATE_API_H_
52