|
@ -1,10 +1,10 @@ |
|
|
use acme_common::crypto::{PrivateKey, X509Certificate};
|
|
|
|
|
|
|
|
|
use acme_common::crypto::{KeyPair, X509Certificate};
|
|
|
use acme_common::error::Error;
|
|
|
use acme_common::error::Error;
|
|
|
|
|
|
|
|
|
pub fn start(
|
|
|
pub fn start(
|
|
|
listen_addr: &str,
|
|
|
listen_addr: &str,
|
|
|
certificate: &X509Certificate,
|
|
|
certificate: &X509Certificate,
|
|
|
private_key: &PrivateKey,
|
|
|
|
|
|
|
|
|
key_pair: &KeyPair,
|
|
|
) -> Result<(), Error> {
|
|
|
) -> Result<(), Error> {
|
|
|
Err("The standalone server is not implemented yet.".into())
|
|
|
Err("The standalone server is not implemented yet.".into())
|
|
|
}
|
|
|
}
|