Crates.io | warp-real-ip |
lib.rs | warp-real-ip |
version | 0.2.0 |
source | src |
created_at | 2020-12-03 15:42:16.661617 |
updated_at | 2021-01-20 16:30:28.409174 |
description | Warp filter to get the "real ip" of the remote client |
homepage | |
repository | https://github.com/icewind1991/warp-real-ip |
max_upload_size | |
id | 319308 |
size | 8,456 |
Warp filter to get the "real ip" of the remote client
This uses the "x-forwarded-for", "x-real-ip" or "forwarded" headers set by reverse proxies. To stop clients from abusing these headers, only headers set by trusted remotes will be accepted.
use warp::Filter;
use warp_real_ip::real_ip;
use std::net::IpAddr;
let proxy_addr = [127, 10, 0, 1].into();
warp::any()
.and(real_ip(vec![proxy_addr]))
.map(|addr: Option<IpAddr>| format!("Hello {}", addr.unwrap()));