feat: add abstraction for proxying logic + small fixes

and i dont wanna break this up into multiple commits.
This commit is contained in:
Tamipes 2025-12-10 19:25:59 +01:00
parent 5233570675
commit 2892cc3e7b
5 changed files with 204 additions and 160 deletions

View file

@ -86,7 +86,7 @@ impl From<crate::packets::ParseErrorTrace> for OpaqueError {
fn from(value: crate::packets::ParseErrorTrace) -> Self {
Self {
span_trace: value.context,
context: format!("packet parse error: {:?}", value.inner),
context: format!("{:?}", value.inner),
}
}
}