Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
secure_socket_unsupported.cc
Go to the documentation of this file.
1// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2// for details. All rights reserved. Use of this source code is governed by a
3// BSD-style license that can be found in the LICENSE file.
4
5#if defined(DART_IO_SECURE_SOCKET_DISABLED)
6
7#include "bin/builtin.h"
8#include "bin/dartutils.h"
9#include "include/dart_api.h"
10
11namespace dart {
12namespace bin {
13
16 "Secure Sockets unsupported on this platform"));
17}
18
21 "Secure Sockets unsupported on this platform"));
22}
23
24void FUNCTION_NAME(SecureSocket_AddCertificate)(Dart_NativeArguments args) {
26 "Secure Sockets unsupported on this platform"));
27}
28
31 "Secure Sockets unsupported on this platform"));
32}
33
36 "Secure Sockets unsupported on this platform"));
37}
38
41 "Secure Sockets unsupported on this platform"));
42}
43
47 "Secure Sockets unsupported on this platform"));
48}
49
53 "Secure Sockets unsupported on this platform"));
54}
55
59 "Secure Sockets unsupported on this platform"));
60}
61
65 "Secure Sockets unsupported on this platform"));
66}
67
70 "Secure Sockets unsupported on this platform"));
71}
72
73void FUNCTION_NAME(SecureSocket_ProcessBuffer)(Dart_NativeArguments args) {
75 "Secure Sockets unsupported on this platform"));
76}
77
78void FUNCTION_NAME(SecureSocket_InitializeLibrary)(Dart_NativeArguments args) {
80 "Secure Sockets unsupported on this platform"));
81}
82
85 "Secure Sockets unsupported on this platform"));
86}
87
90 "Secure Sockets unsupported on this platform"));
91}
92
93void FUNCTION_NAME(SecureSocket_NewServicePort)(Dart_NativeArguments args) {
95 "Secure Sockets unsupported on this platform"));
96}
97
100 "Secure Sockets unsupported on this platform"));
101}
102
106 "Secure Sockets unsupported on this platform"));
107}
108
112 "Secure Sockets unsupported on this platform"));
113}
114
118 "Secure Sockets unsupported on this platform"));
119}
120
124 "Secure Sockets unsupported on this platform"));
125}
126
130 "Secure Sockets unsupported on this platform"));
131}
132
136 "Secure Sockets unsupported on this platform"));
137}
138
142 "Secure Sockets unsupported on this platform"));
143}
144
147 "Secure Sockets unsupported on this platform"));
148}
149
152 "Secure Sockets unsupported on this platform"));
153}
154
157 "Secure Sockets unsupported on this platform"));
158}
159
162 "Secure Sockets unsupported on this platform"));
163}
164
167 "Secure Sockets unsupported on this platform"));
168}
169
172 "Secure Sockets unsupported on this platform"));
173}
174
177 "Secure Sockets unsupported on this platform"));
178}
179
180class SSLFilter {
181 public:
182 static CObject* ProcessFilterRequest(const CObjectArray& request);
183};
184
185CObject* SSLFilter::ProcessFilterRequest(const CObjectArray& request) {
187}
188
189} // namespace bin
190} // namespace dart
191
192#endif // defined(DART_IO_SECURE_SOCKET_DISABLED)
#define FUNCTION_NAME(name)
Definition builtin.h:19
static CObject * IllegalArgumentError()
static Dart_Handle NewDartArgumentError(const char *message)
Definition dartutils.cc:750
static CObject * ProcessFilterRequest(const CObjectArray &request)
struct _Dart_NativeArguments * Dart_NativeArguments
Definition dart_api.h:3010
G_BEGIN_DECLS G_MODULE_EXPORT FlValue * args
void FUNCTION_NAME() SecurityContext_SetTrustedCertificatesBytes(Dart_NativeArguments args)
void FUNCTION_NAME() X509_Issuer(Dart_NativeArguments args)
void FUNCTION_NAME() SecurityContext_TrustBuiltinRoots(Dart_NativeArguments args)
void FUNCTION_NAME() SecureSocket_Connect(Dart_NativeArguments args)
void FUNCTION_NAME() SecureSocket_RegisterHandshakeCompleteCallback(Dart_NativeArguments args)
void FUNCTION_NAME() SecureSocket_PeerCertificate(Dart_NativeArguments args)
void FUNCTION_NAME() X509_EndValidity(Dart_NativeArguments args)
void FUNCTION_NAME() SecurityContext_UseCertificateChainBytes(Dart_NativeArguments args)
void FUNCTION_NAME() SecureSocket_Destroy(Dart_NativeArguments args)
void FUNCTION_NAME() SecurityContext_Allocate(Dart_NativeArguments args)
void FUNCTION_NAME() SecurityContext_UsePrivateKeyBytes(Dart_NativeArguments args)
void FUNCTION_NAME() X509_Der(Dart_NativeArguments args)
void FUNCTION_NAME() SecureSocket_NewX509CertificateWrapper(Dart_NativeArguments args)
void FUNCTION_NAME() SecureSocket_Init(Dart_NativeArguments args)
void FUNCTION_NAME() SecureSocket_RegisterKeyLogPort(Dart_NativeArguments args)
void FUNCTION_NAME() X509_Subject(Dart_NativeArguments args)
void FUNCTION_NAME() SecurityContext_SetAlpnProtocols(Dart_NativeArguments args)
void FUNCTION_NAME() X509_Pem(Dart_NativeArguments args)
void FUNCTION_NAME() SecureSocket_FilterPointer(Dart_NativeArguments args)
void FUNCTION_NAME() SecureSocket_MarkAsTrusted(Dart_NativeArguments args)
void FUNCTION_NAME() SecurityContext_SetAllowTlsRenegotiation(Dart_NativeArguments args)
void FUNCTION_NAME() X509_StartValidity(Dart_NativeArguments args)
void FUNCTION_NAME() SecureSocket_RegisterBadCertificateCallback(Dart_NativeArguments args)
void FUNCTION_NAME() SecureSocket_GetSelectedProtocol(Dart_NativeArguments args)
void FUNCTION_NAME() SecurityContext_SetClientAuthoritiesBytes(Dart_NativeArguments args)
void FUNCTION_NAME() SecureSocket_Handshake(Dart_NativeArguments args)
void FUNCTION_NAME() X509_Sha1(Dart_NativeArguments args)
DART_EXPORT Dart_Handle Dart_ThrowException(Dart_Handle exception)