#parser #header #rfc-7239

no-std rfc7239

Parser for rfc7239 formatted Forwarded headers

4 releases

0.1.3 Dec 12, 2024
0.1.2 Nov 28, 2024
0.1.1 Apr 3, 2024
0.1.0 Jan 5, 2021

#67 in HTTP client

Download history 7165/week @ 2024-12-21 6582/week @ 2024-12-28 10256/week @ 2025-01-04 17032/week @ 2025-01-11 15760/week @ 2025-01-18 15844/week @ 2025-01-25 16143/week @ 2025-02-01 19754/week @ 2025-02-08 20677/week @ 2025-02-15 20655/week @ 2025-02-22 19854/week @ 2025-03-01 20831/week @ 2025-03-08 21494/week @ 2025-03-15 21927/week @ 2025-03-22 21491/week @ 2025-03-29 20959/week @ 2025-04-05

89,302 downloads per month
Used in 209 crates (5 directly)

MIT/Apache

16KB
388 lines

rfc7239

Parser for rfc7239 formatted Forwarded headers.

Usage

use rfc7239::parse;

// get the header value from your favorite http server library
let header_value = "for=192.0.2.60;proto=http;by=203.0.113.43,for=192.168.10.10";

for node_result in parse(header_value) {
    let node = node_result?;
    if let Some(forwarded_for) = node.forwarded_for {
        println!("Forwarded by {}", forwarded_for)
    }
}

no_std

This crate can be used in a no_std environment by disabling the default std feature.

The only impact disabling this feature has is using core::error::Error and core::net::IpAddr instead of the std variants and increasing the msrv to 1.81.

Dependencies

~31KB