Crates.io | ovpnfile |
lib.rs | ovpnfile |
version | 0.1.2 |
source | src |
created_at | 2017-05-26 12:51:34.424412 |
updated_at | 2017-05-27 21:23:39.436166 |
description | A crate for parsing openvpn config files |
homepage | |
repository | https://github.com/alexjg/rs-ovpnfile |
max_upload_size | |
id | 16359 |
size | 111,023 |
This is a tiny library for parsing openvpn config files as documented here.
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.
Licensed under either of
at your option.
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.