This commit is contained in:
Jonah Dahlquist 2019-08-09 17:26:14 -05:00 committed by Jonah Dahlquist
commit d2fb6b9996
8 changed files with 104 additions and 46 deletions

View file

@ -1,11 +1,10 @@
pub const COMMON: u8 = 0;
pub mod common {
pub const MODE: u16 = 0x0;
pub const GATEWAY: u16 = 0x1;
pub const SUBNET_MASK: u16 = 0x5;
pub const MAC: u16 = 0x9;
pub const IP: u16 = 0xF;
pub const VERSION: u16 = 0x39;
pub const MODE: u16 = 0x0;
pub const GATEWAY: u16 = 0x1;
pub const SUBNET_MASK: u16 = 0x5;
pub const MAC: u16 = 0x9;
pub const IP: u16 = 0xF;
pub const VERSION: u16 = 0x39;
}