blob: 12e435e5895b2cc5b9a07ad18b75b90956c66f71 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
// Copyright (c) 2012 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_CPP_PRIVATE_TCP_SOCKET_PRIVATE_H_
#define PPAPI_CPP_PRIVATE_TCP_SOCKET_PRIVATE_H_
#include "ppapi/c/pp_stdint.h"
#include "ppapi/c/private/ppb_tcp_socket_private.h"
#include "ppapi/cpp/pass_ref.h"
#include "ppapi/cpp/private/x509_certificate_private.h"
#include "ppapi/cpp/resource.h"
namespace pp {
class CompletionCallback;
class InstanceHandle;
class TCPSocketPrivate : public Resource {
public:
explicit TCPSocketPrivate(const InstanceHandle& instance);
TCPSocketPrivate(PassRef, PP_Resource resource);
// Returns true if the required interface is available.
static bool IsAvailable();
int32_t Connect(const char* host,
uint16_t port,
const CompletionCallback& callback);
int32_t ConnectWithNetAddress(const PP_NetAddress_Private* addr,
const CompletionCallback& callback);
bool GetLocalAddress(PP_NetAddress_Private* local_addr);
bool GetRemoteAddress(PP_NetAddress_Private* remote_addr);
int32_t SSLHandshake(const char* server_name,
uint16_t server_port,
const CompletionCallback& callback);
X509CertificatePrivate GetServerCertificate();
bool AddChainBuildingCertificate(const X509CertificatePrivate& cert,
bool trusted);
int32_t Read(char* buffer,
int32_t bytes_to_read,
const CompletionCallback& callback);
int32_t Write(const char* buffer,
int32_t bytes_to_write,
const CompletionCallback& callback);
void Disconnect();
int32_t SetOption(PP_TCPSocketOption_Private name,
const Var& value,
const CompletionCallback& callback);
};
} // namespace pp
#endif // PPAPI_CPP_PRIVATE_TCP_SOCKET_PRIVATE_H_
|