Ran formatting

This commit is contained in:
Jonah Dahlquist 2019-09-05 20:39:47 -05:00 committed by Jonah Dahlquist
commit 95ca1be001
5 changed files with 64 additions and 22 deletions

View file

@ -44,14 +44,14 @@ pub mod socketn {
pub const MODE: u16 = 0x00;
#[repr(u8)]
pub enum Protocol {
Udp = 0b10u8
Udp = 0b10u8,
}
pub const INTERRUPT: u16 = 0x02;
#[repr(u8)]
pub enum Interrupt {
SendOk = 0b10000u8
SendOk = 0b10000u8,
}
pub const SOURCE_PORT: u16 = 0x04;
}
}