Skip to content

Rust library for parsing openvpn config files

License

Apache-2.0, MIT licenses found

Licenses found

Apache-2.0
LICENSE-APACHE
MIT
LICENSE-MIT
Notifications You must be signed in to change notification settings

sceneq/rs-ovpnfile

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ovpnfile Build Status Crates.io Docs

This is a tiny library for parsing openvpn config files as documented here.

Usage

Install the thing

cargo install ovpnfile

Use the thing

use ovpnfile;
let mut file = File::open("myovpnfile.ovpn").unwrap();
let parsed_file = ovpnfile::parse(file).unwrap();
let first_line = parsed_file.success_lines[0];
assert!(first_line.line_no == 5) //or whatever line the first succesfully parsed directive was on
assert!(first_line.directive == ovpnfile::ConfigDirective::Nobind)

See the documentation for more details.

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

About

Rust library for parsing openvpn config files

Resources

License

Apache-2.0, MIT licenses found

Licenses found

Apache-2.0
LICENSE-APACHE
MIT
LICENSE-MIT

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Rust 100.0%