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

Side by Side Diff: runtime/bin/io_natives.cc

Issue 11467004: Enable client certificates in SecureSocket and SecureServerSocket (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comments Created 8 years 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | runtime/bin/secure_socket.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS 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 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. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 #include "bin/io_natives.h" 5 #include "bin/io_natives.h"
6 6
7 #include <stdlib.h> 7 #include <stdlib.h>
8 #include <string.h> 8 #include <string.h>
9 9
10 #include "bin/builtin.h" 10 #include "bin/builtin.h"
(...skipping 22 matching lines...) Expand all
33 V(Socket_CreateConnect, 3) \ 33 V(Socket_CreateConnect, 3) \
34 V(Socket_Available, 1) \ 34 V(Socket_Available, 1) \
35 V(Socket_Read, 2) \ 35 V(Socket_Read, 2) \
36 V(Socket_ReadList, 4) \ 36 V(Socket_ReadList, 4) \
37 V(Socket_WriteList, 4) \ 37 V(Socket_WriteList, 4) \
38 V(Socket_GetPort, 1) \ 38 V(Socket_GetPort, 1) \
39 V(Socket_GetRemotePeer, 1) \ 39 V(Socket_GetRemotePeer, 1) \
40 V(Socket_GetError, 1) \ 40 V(Socket_GetError, 1) \
41 V(Socket_GetStdioHandle, 2) \ 41 V(Socket_GetStdioHandle, 2) \
42 V(Socket_NewServicePort, 0) \ 42 V(Socket_NewServicePort, 0) \
43 V(SecureSocket_Connect, 5) \ 43 V(SecureSocket_Connect, 8) \
44 V(SecureSocket_Destroy, 1) \ 44 V(SecureSocket_Destroy, 1) \
45 V(SecureSocket_Handshake, 1) \ 45 V(SecureSocket_Handshake, 1) \
46 V(SecureSocket_Init, 1) \ 46 V(SecureSocket_Init, 1) \
47 V(SecureSocket_PeerCertificate, 1) \
47 V(SecureSocket_ProcessBuffer, 2) \ 48 V(SecureSocket_ProcessBuffer, 2) \
48 V(SecureSocket_RegisterBadCertificateCallback, 2) \ 49 V(SecureSocket_RegisterBadCertificateCallback, 2) \
49 V(SecureSocket_RegisterHandshakeCompleteCallback, 2) \ 50 V(SecureSocket_RegisterHandshakeCompleteCallback, 2) \
50 V(SecureSocket_InitializeLibrary, 3) \ 51 V(SecureSocket_InitializeLibrary, 3) \
51 V(SystemEncodingToString, 1) \ 52 V(SystemEncodingToString, 1) \
52 V(StringToSystemEncoding, 1) 53 V(StringToSystemEncoding, 1)
53 54
54 55
55 IO_NATIVE_LIST(DECLARE_FUNCTION); 56 IO_NATIVE_LIST(DECLARE_FUNCTION);
56 57
(...skipping 15 matching lines...) Expand all
72 int num_entries = sizeof(IOEntries) / sizeof(struct NativeEntries); 73 int num_entries = sizeof(IOEntries) / sizeof(struct NativeEntries);
73 for (int i = 0; i < num_entries; i++) { 74 for (int i = 0; i < num_entries; i++) {
74 struct NativeEntries* entry = &(IOEntries[i]); 75 struct NativeEntries* entry = &(IOEntries[i]);
75 if (!strcmp(function_name, entry->name_) && 76 if (!strcmp(function_name, entry->name_) &&
76 (entry->argument_count_ == argument_count)) { 77 (entry->argument_count_ == argument_count)) {
77 return reinterpret_cast<Dart_NativeFunction>(entry->function_); 78 return reinterpret_cast<Dart_NativeFunction>(entry->function_);
78 } 79 }
79 } 80 }
80 return NULL; 81 return NULL;
81 } 82 }
OLDNEW
« no previous file with comments | « no previous file | runtime/bin/secure_socket.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698