No description
  • Rust 97.2%
  • Nix 2.8%
Find a file
2021-01-05 21:36:35 +01:00
.github/workflows initial implementation 2021-01-05 21:36:35 +01:00
src initial implementation 2021-01-05 21:36:35 +01:00
.gitignore init repo 2021-01-05 18:52:16 +01:00
Cargo.toml initial implementation 2021-01-05 21:36:35 +01:00
README.md initial implementation 2021-01-05 21:36:35 +01:00

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)
    }
}