accept more signature algos

This commit is contained in:
nora 2023-09-24 21:52:29 +02:00
parent df9e3ea17d
commit 57f6feb70a
5 changed files with 28 additions and 11 deletions

View file

@ -14,7 +14,10 @@ pub struct FrameReader<R> {
impl<R> FrameReader<R> {
pub fn new(read: R) -> Self {
FrameReader { read, is_hello_retry_request: false }
FrameReader {
read,
is_hello_retry_request: false,
}
}
}