axum-client-ip 0.7.0

Client IP address extractors for Axum
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![doc = include_str!("../README.md")]

mod insecure;
mod rudimental;
mod secure;
pub use insecure::InsecureClientIp;
pub use rudimental::{
    CfConnectingIp, CloudFrontViewerAddress, FlyClientIp, Forwarded, LeftmostForwarded,
    LeftmostXForwardedFor, RightmostForwarded, RightmostXForwardedFor, TrueClientIp, XForwardedFor,
    XRealIp,
};
pub use secure::{SecureClientIp, SecureClientIpSource};
pub(crate) mod rejection;