docserver/src/defs/app_connect_info.rs
Jesús Pérez 8ba9afbce3
Some checks are pending
Install / Cargo install on ubuntu-latest (push) Waiting to run
chore: update to new crates versions and fix sources for it
2024-08-14 17:34:50 +01:00

29 lines
885 B
Rust

use std::net::SocketAddr;
//use hyper::server::conn::AddrStream;
use axum::extract::connect_info::Connected;
use axum::serve::IncomingStream;
#[derive(Clone, Debug)]
pub struct AppConnectInfo {
pub remote_addr: SocketAddr,
// pub local_addr: SocketAddr,
}
impl Connected<IncomingStream<'_>> for AppConnectInfo {
fn connect_info(target: IncomingStream<'_>) -> Self {
AppConnectInfo {
remote_addr: target.remote_addr(),
// local_addr: target.local_addr().unwrap_or(target.remote_addr()),
}
}
}
// impl Connected<&AddrStream> for AppConnectInfo {
// fn connect_info(target: &AddrStream) -> Self {
impl Connected<SocketAddr> for AppConnectInfo {
fn connect_info(target: SocketAddr) -> Self {
AppConnectInfo {
remote_addr: target.to_owned(),
// local_addr: target.to_owned(),
}
}
}