server_certs.h (409B)
1 /* This Source Code Form is subject to the terms of the Mozilla Public 2 * License, v. 2.0. If a copy of the MPL was not distributed with this file, 3 * You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 5 #ifndef TLS_SERVER_CERT_H_ 6 #define TLS_SERVER_CERT_H_ 7 8 #include "prio.h" 9 10 namespace TlsServer { 11 12 void InstallServerCertificates(PRFileDesc* fd); 13 14 } // namespace TlsServer 15 16 #endif // TLS_SERVER_CERT_H_