Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create v6::OROCodes (#1) #38

Open
wants to merge 15 commits into
base: master
Choose a base branch
from
4 changes: 4 additions & 0 deletions src/v6/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,8 @@
//! ```
//!
mod options;
mod oro_codes;
mod option_codes;

#[cfg(feature = "serde")]
use serde::{Deserialize, Serialize};
Expand All @@ -61,6 +63,8 @@ use std::{convert::TryInto, fmt, net::Ipv6Addr};

// re-export submodules from proto::msg
pub use self::options::*;
pub use self::oro_codes::*;
pub use self::option_codes::*;

pub use crate::{
decoder::{Decodable, Decoder},
Expand Down
Loading