X-Git-Url: https://code.wpia.club/?a=blobdiff_plain;f=src%2FremoteSigner.h;h=8cc3c72f29631f54732080f98ff3bf04b6d8abfe;hb=47247a0a500435276c287c69db0e74ab2b92c7fa;hp=36c9339989376875b8c1541a251c518dbc3c42c2;hpb=b96ef8b6ed1da29999800fbfd681b153de75bb72;p=cassiopeia.git diff --git a/src/remoteSigner.h b/src/remoteSigner.h index 36c9339..8cc3c72 100644 --- a/src/remoteSigner.h +++ b/src/remoteSigner.h @@ -13,10 +13,12 @@ class RemoteSigner : public Signer { private: std::shared_ptr target; std::shared_ptr ctx; + std::shared_ptr log; int count = 0; void send( std::shared_ptr bio, RecordHeader& head, RecordHeader::SignerCommand cmd, std::string data ); public: RemoteSigner( std::shared_ptr target, std::shared_ptr ctx ); ~RemoteSigner(); std::shared_ptr sign( std::shared_ptr cert ); + void setLog( std::shared_ptr target ); };