age: Return correct response encoding for confirm command

This commit is contained in:
Jack Grigg 2022-05-01 19:24:41 +00:00
parent 56597a6815
commit 1324b80562
3 changed files with 7 additions and 1 deletions

View file

@ -10,6 +10,7 @@ to 1.0.0 are beta releases.
### Added
- `age_core::io::{DebugReader, DebugWriter}`
- `age_core::plugin::Error::Unsupported`
- `age_core::plugin::Reply::ok_with_metadata`
### Changed
- MSRV is now 1.56.0.

View file

@ -382,6 +382,11 @@ impl<'a, R: Read, W: Write> Reply<'a, R, W> {
)
}
/// Reply with `ok`, metadata, and optional data.
pub fn ok_with_metadata<S: AsRef<str>>(self, metadata: &[S], data: Option<&[u8]>) -> Response {
Response(self.0.send(RESPONSE_OK, metadata, data.unwrap_or_default()))
}
/// The command failed (for example, the user failed to respond to an input request).
pub fn fail(self) -> Response {
Response(self.0.send::<&str>(RESPONSE_FAIL, &[], &[]))