| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef NET_ANDROID_NETWORK_LIBRARY_H_ | 5 #ifndef NET_ANDROID_NETWORK_LIBRARY_H_ |
| 6 #define NET_ANDROID_NETWORK_LIBRARY_H_ | 6 #define NET_ANDROID_NETWORK_LIBRARY_H_ |
| 7 | 7 |
| 8 #include <jni.h> | 8 #include <jni.h> |
| 9 #include <stddef.h> | 9 #include <stddef.h> |
| 10 #include <stdint.h> | 10 #include <stdint.h> |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 | 38 |
| 39 // Helper for the <keygen> handler. Passes the DER-encoded key pair via JNI to | 39 // Helper for the <keygen> handler. Passes the DER-encoded key pair via JNI to |
| 40 // the Credentials store. The public key should be a DER-encoded | 40 // the Credentials store. The public key should be a DER-encoded |
| 41 // SubjectPublicKeyInfo (X.509) and the private key a DER-encode PrivateKeyInfo | 41 // SubjectPublicKeyInfo (X.509) and the private key a DER-encode PrivateKeyInfo |
| 42 // (PKCS#8). | 42 // (PKCS#8). |
| 43 bool StoreKeyPair(const uint8_t* public_key, | 43 bool StoreKeyPair(const uint8_t* public_key, |
| 44 size_t public_len, | 44 size_t public_len, |
| 45 const uint8_t* private_key, | 45 const uint8_t* private_key, |
| 46 size_t private_len); | 46 size_t private_len); |
| 47 | 47 |
| 48 // Returns true if cleartext traffic to |host| is allowed by the app. Always |
| 49 // true on L and older. |
| 50 bool IsCleartextPermitted(const std::string& host); |
| 51 |
| 48 // Returns true if it can determine that only loopback addresses are configured. | 52 // Returns true if it can determine that only loopback addresses are configured. |
| 49 // i.e. if only 127.0.0.1 and ::1 are routable. | 53 // i.e. if only 127.0.0.1 and ::1 are routable. |
| 50 // Also returns false if it cannot determine this. | 54 // Also returns false if it cannot determine this. |
| 51 bool HaveOnlyLoopbackAddresses(); | 55 bool HaveOnlyLoopbackAddresses(); |
| 52 | 56 |
| 53 // Get the mime type (if any) that is associated with the file extension. | 57 // Get the mime type (if any) that is associated with the file extension. |
| 54 // Returns true if a corresponding mime type exists. | 58 // Returns true if a corresponding mime type exists. |
| 55 bool GetMimeTypeFromExtension(const std::string& extension, | 59 bool GetMimeTypeFromExtension(const std::string& extension, |
| 56 std::string* result); | 60 std::string* result); |
| 57 | 61 |
| (...skipping 22 matching lines...) Expand all Loading... |
| 80 NET_EXPORT bool GetIsCaptivePortal(); | 84 NET_EXPORT bool GetIsCaptivePortal(); |
| 81 | 85 |
| 82 // Gets the SSID of the currently associated WiFi access point if there is one. | 86 // Gets the SSID of the currently associated WiFi access point if there is one. |
| 83 // Otherwise, returns empty string. | 87 // Otherwise, returns empty string. |
| 84 NET_EXPORT_PRIVATE std::string GetWifiSSID(); | 88 NET_EXPORT_PRIVATE std::string GetWifiSSID(); |
| 85 | 89 |
| 86 } // namespace android | 90 } // namespace android |
| 87 } // namespace net | 91 } // namespace net |
| 88 | 92 |
| 89 #endif // NET_ANDROID_NETWORK_LIBRARY_H_ | 93 #endif // NET_ANDROID_NETWORK_LIBRARY_H_ |
| OLD | NEW |